Skip to content

Commit

Permalink
Install support for POSIX ACLs if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
lae committed Mar 28, 2018
1 parent ceaeab7 commit 6d2da14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tasks/install_packages_apt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
- "{{ netbox_ldap_packages if netbox_ldap_enabled else [] }}"
- "{{ 'git' if netbox_git else [] }}"
- "{{ 'python-psycopg2' if (ansible_python_version | version_compare('3.0.0', '<')) else 'python3-psycopg2' }}"
- "{{ 'acl' if ('SUDO_USER' in ansible_env and ansible_env.SUDO_USER != 'root') else [] }}"

1 change: 1 addition & 0 deletions tasks/install_packages_yum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
- "{{ netbox_ldap_packages if netbox_ldap_enabled else [] }}"
- "{{ 'git' if netbox_git else [] }}"
- python-psycopg2
- "{{ 'acl' if ('SUDO_USER' in ansible_env and ansible_env.SUDO_USER != 'root') else [] }}"

0 comments on commit 6d2da14

Please sign in to comment.