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>
8 # Playbook for provisioning the base-meta-role for all hosts. Also a reference of our vars.
10 # This playbook will be executed always: This is a speed optimization.
11 # Host-specific playbooks are meant to extend the base.
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 }