]> git.somenet.org - root/pub/somesible.git/blob - site_base.yml
[roles/base/sysctl] Set system settings - TODO: move to systemd subrole?
[root/pub/somesible.git] / site_base.yml
1 #####################################
2 ### someone's ansible provisioner ###
3 #####################################
4 # Part of: https://git.somenet.org/root/pub/somesible.git
5 # 2017-2026 by someone <someone@somenet.org>
6 #
7 #
8 # Playbook for provisioning the base-meta-role for all hosts. Also a reference of our vars.
9 #
10 # This playbook will be executed always: This is a speed optimization.
11 # Host-specific playbooks are meant to extend the base.
12 #
13 ---
14 - hosts: all
15   become: true
16   roles:
17   - { role: custom-command, tags: 'cc', when: cc is defined }
18   - { role: cleanup, tags: ['cleanup'], when: not cc is defined and cleanup_level|int > 0 }
19   - { role: base, tags: ['base'], when: not cc is defined and not skip_base|default('False')|bool }