diff options
Diffstat (limited to 'site.workstation.yml')
-rw-r--r-- | site.workstation.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/site.workstation.yml b/site.workstation.yml new file mode 100644 index 0000000..65caed7 --- /dev/null +++ b/site.workstation.yml @@ -0,0 +1,10 @@ +- hosts: localhost + + pre_tasks: + - name: verify running as root + fail: + when: ansible_user_id != "root" + tags: always + + roles: + - role: workstation |