Skip to content
This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Commit 1ce66cf

Browse files
committed
tidy up
1 parent 376438a commit 1ce66cf

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- name: Install required packages
2+
hosts: workstations
3+
tasks:
4+
- include: ./required_pkgs_wks_apt.yaml
5+
when: ansible_distribution == "Debian" or ansible_distribution == "Ubuntu" or ansible_distribution == "Linux Mint"

roles/update_apt.yaml renamed to roles/workstation/required_pkgs_wks_apt.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
- name: Update all apt packages | apt
1+
- name: Install NextCloud Desktop on Debian derivatives | apt
2+
hosts: linux
3+
become: true
24
ansible.builtin.apt:
35
state: latest
4-
name: "*"
5-
force_apt_get: true
6-
autoremove: true
76
update_cache: true
7+
name: mc
88
register: output
99
- name: Show output
1010
debug: msg="{{ output.stdout_lines }}"
11-
when: output.changed

0 commit comments

Comments
 (0)