Merge pull request #154 from cschug/fix_undefined_hosts

fix: ensure `hosts` definition is always defined
This commit is contained in:
Christoph Schug 2024-03-03 15:45:10 +01:00 committed by GitHub
commit 4111c147f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
---
- name: install fail2ban and configure sshd
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install fail2ban

View File

@ -1,6 +1,6 @@
---
- name: add ssh key
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install public keys

View File

@ -1,6 +1,6 @@
---
- name: deploy portainer-ce latest
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
become_user: "{{ lookup('env','USER') }}"
tasks:

View File

@ -1,6 +1,6 @@
---
- name: deploy traefik v2.5
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: deploy traefik

View File

@ -1,5 +1,5 @@
- name: install core packages
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install core packages

View File

@ -1,6 +1,6 @@
---
- name: install docker
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install docker dependencies

View File

@ -1,6 +1,6 @@
---
- name: install microk8s
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install microk8s

View File

@ -1,6 +1,6 @@
---
- name: install core packages for virtual machines
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install packages

View File

@ -1,6 +1,6 @@
---
- name: install wireguard
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install wireguard

View File

@ -1,6 +1,6 @@
---
- name: install zsh
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: install zsh

View File

@ -1,6 +1,6 @@
---
- name: check disk space
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
tasks:
- name: get disk usage
ansible.builtin.command: df -h

View File

@ -1,6 +1,6 @@
---
- name: clean docker
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
tasks:
- name: prune non-dangling images
community.docker.docker_prune:

View File

@ -1,6 +1,6 @@
---
- name: check if system reboot is required
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: check if system reboot is required

View File

@ -1,6 +1,6 @@
---
- name: reboot machine
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
become: yes
tasks:
- name: reboot machine

View File

@ -11,7 +11,7 @@
- name: notify discord
hosts: "{{ hosts }}"
hosts: "{{ my_hosts | d([]) }}"
vars:
# The name that will be shown as sender of the notification. Note