Skip to content
Snippets Groups Projects
Commit 1995dc06 authored by Nemesis's avatar Nemesis
Browse files

[apt] Install acl module if non-root

Fixes issue described in https://docs.ansible.com/ansible/become.html#becoming-an-unprivileged-user
parent 2805b595
No related branches found
Tags 0.5.3
No related merge requests found
......@@ -16,6 +16,11 @@
- libffi-dev
- python-dev
# fixes issue described in https://docs.ansible.com/ansible/become.html#becoming-an-unprivileged-user
- name: Install acl if acting as non-root user
apt: name=acl state=latest
when: ansible_user != 'root'
- name: ensure supervisor is started
service: name=supervisor state=started
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment