You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
390 B
20 lines
390 B
- hosts: attitude-adjuster
|
|
become: yes
|
|
tasks:
|
|
|
|
- name: install dependencies
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- git
|
|
- vim
|
|
|
|
- import_playbook: security.yml
|
|
|
|
- import_playbook: ddclient.yml
|
|
- import_playbook: home-assistant.yml
|
|
- import_playbook: pihole.yml
|
|
- import_playbook: traefik.yml
|
|
- import_playbook: docker.yml
|