@@ -1,6 +1,7 @@
---
- hosts: omega
become_user: root
+ user: ansible
become: yes
tasks:
- name: update the system
@@ -1,5 +1,6 @@
- hosts: debian
@@ -15,4 +16,11 @@
- name: Remove dependencies that are no longer required
apt:
autoremove: yes
-
+
+ - name: Add acl for user
+ apt:
+ name: "{{ item }}"
+ state: present
+ with_items:
+ - acl
+ - python3-pip