Migrate include: to include_tasks

This commit is contained in:
Jake Howard 2022-01-22 20:21:32 +00:00
parent 106a89d72f
commit f07b5d9b7b
Signed by: jake
GPG Key ID: 57AFB45680EDD477
9 changed files with 25 additions and 25 deletions

View File

@ -1,14 +1,14 @@
- name: Packages
include: packages.yml
include_tasks: packages.yml
- name: User
include: user.yml
include_tasks: user.yml
- name: SSH
include: ssh.yml
include_tasks: ssh.yml
- name: fail2ban
include: fail2ban.yml
include_tasks: fail2ban.yml
- name: logrotate
include: logrotate.yml
include_tasks: logrotate.yml

View File

@ -49,5 +49,5 @@
directory_mode: 0755
- name: override docker service for zfs dependencies
include: zfs-override.yml
include_tasks: zfs-override.yml
when: docker_zfs_override

View File

@ -2,7 +2,7 @@
include_vars: vault.yml
- name: Grafana
include: grafana.yml
include_tasks: grafana.yml
- name: Prometheus
include: prometheus.yml
include_tasks: prometheus.yml

View File

@ -1,8 +1,8 @@
- name: Configure Nginx
include: nginx.yml
include_tasks: nginx.yml
- name: Configure wireguard
include: wireguard.yml
include_tasks: wireguard.yml
- name: Configure fail2ban
include: fail2ban.yml
include_tasks: fail2ban.yml

View File

@ -1,5 +1,5 @@
- name: Configure wireguard
include: wireguard.yml
include_tasks: wireguard.yml
- name: Configure nginx
include: nginx.yml
include_tasks: nginx.yml

View File

@ -1,23 +1,23 @@
- name: Install calibre
include: calibre.yml
include_tasks: calibre.yml
- name: Install librespeed
include: librespeed.yml
include_tasks: librespeed.yml
- name: Install nextcloud
include: nextcloud.yml
include_tasks: nextcloud.yml
- name: Install quassel
include: quassel.yml
include_tasks: quassel.yml
- name: Install synapse
include: synapse.yml
include_tasks: synapse.yml
- name: Install tt-rss
include: tt-rss.yml
include_tasks: tt-rss.yml
- name: Install wallabag
include: wallabag.yml
include_tasks: wallabag.yml
- name: Install whoami
include: whoami.yml
include_tasks: whoami.yml

View File

@ -1,5 +1,5 @@
- name: qbittorrent
include: qbittorrent.yml
include_tasks: qbittorrent.yml
- name: nginx
include: nginx.yml
include_tasks: nginx.yml

View File

@ -104,7 +104,7 @@
become: true
- name: fail2ban
include: fail2ban.yml
include_tasks: fail2ban.yml
when: with_fail2ban
- name: Check for nginx config

View File

@ -22,4 +22,4 @@
become: true
- name: Sanoid
include: sanoid.yml
include_tasks: sanoid.yml