Ansible_workstation/roles/user/tasks/debian.yml

22 lines
302 B
YAML
Raw Normal View History

---
- name: Install stow
apt:
name: stow
state: present
update_cache: yes
become: true
- name: Install git
apt:
name: git
state: present
update_cache: yes
become: true
2022-03-04 04:56:37 +00:00
- name: Install acl
apt:
name: acl
state: present
update_cache: yes
become: true