Merge pull request 'change include to include_tasks' (#2) from include_tasks into main

Reviewed-on: #2
This commit is contained in:
meaz 2023-01-18 14:07:20 +00:00
commit 87a32c4cc4
1 changed files with 6 additions and 6 deletions

View File

@ -1,16 +1,16 @@
---
- name: Add user
include: user.yml
include_tasks: user.yml
- name: Install and configure npm and nodejs
include: installdeps.yml
include_tasks: installdeps.yml
- name: Generate hubot instance
include: createhubot.yml
include_tasks: createhubot.yml
- name: Install hubot modules
include: addmodules.yml
include_tasks: addmodules.yml
- name: Install go
include: installgo.yml
@ -19,8 +19,8 @@
include: createfeedbot.yml
- name: Delete bot
include: deletebot.yml
include_tasks: deletebot.yml
when: bot_delete_list is defined and (bot_delete_list | length > 0)
- name: Deploy Systemd
include: systemd.yml
include_tasks: systemd.yml