blob: 85f2db36294592887a27de4c5424417fccce3bce (
plain) (
tree)
|
|
- name: verify running as root
fail:
msg: playbook must be run as root
when: ansible_user_id != "root"
- name: include packages
include_tasks: pkgs.yml
tags: pkgs
- name: include sysconf
include_tasks: sysconf.yml
tags: sysconf
|