just become everything

This commit is contained in:
citty 2021-10-15 22:13:30 -04:00
parent a3f45c0901
commit 62dd3230fb

View File

@ -1,20 +1,30 @@
--- ---
- hosts: all - hosts: all
handlers:
- import_tasks: handlers.yml
vars_prompt: vars_prompt:
- name: password - name: password
prompt: "Enter new root and admin password" prompt: "Enter new root and admin password"
roles: roles:
- immortal - immortal
become: yes
- hosts: web - hosts: web
handlers:
- import_tasks: handlers.yml
roles: roles:
- web - web
become: yes
- hosts: database - hosts: database
handlers:
- import_tasks: handlers.yml
roles: roles:
- database - database
become: yes
- hosts: all - hosts: all
roles: roles:
- geerlingguy.docker - geerlingguy.docker
become: yes