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.
26 lines
646 B
26 lines
646 B
---
|
|
- hosts: all
|
|
become: True
|
|
become_method: sudo
|
|
vars:
|
|
- role_users: "{{ users }}"
|
|
|
|
roles:
|
|
- { role: hosts, tags: hosts }
|
|
- { role: bootstrap-miscserver , tags: bootstrap }
|
|
- { role: snmp , tags: snmp }
|
|
- { role: squid-deb-proxy-1804, tags: debproxy }
|
|
- { role: squid-deb-proxy-more-1804, tags: proxy}
|
|
tasks:
|
|
- name: set timezone
|
|
timezone:
|
|
name: Asia/Taipei
|
|
|
|
post_tasks:
|
|
- name: Autoremove unused packages
|
|
apt:
|
|
autoremove: yes
|
|
autoclean: yes
|
|
register: autoremove_output
|
|
changed_when: "'The following packages will be REMOVED' in autoremove_output.stdout"
|