Install provisioning tools in the VM
- Added --diff flag - Installed virt-manager and ansible - Removed duplicate software install task - Removed irrelevant GUI task
This commit is contained in:
@@ -23,11 +23,6 @@
|
||||
fi
|
||||
loop: "{{ users }}"
|
||||
|
||||
- name: Install packages
|
||||
ansible.builtin.apt:
|
||||
name: "{{ item }}"
|
||||
loop: "{{ packages }}"
|
||||
|
||||
- name: Install sqlite3
|
||||
ansible.builtin.apt:
|
||||
name: sqlite3
|
||||
@@ -46,11 +41,3 @@
|
||||
dest: "{{ homedir }}/.config/autostart-scripts/pinnedapps.sh"
|
||||
mode: a+x
|
||||
loop: "{{ users }}"
|
||||
|
||||
- name: Ensure we have our own comment added to /etc/services
|
||||
ansible.builtin.lineinfile:
|
||||
path: "{{ homedir }}/.config/autostart-scripts/pinnedapps.sh"
|
||||
regexp: '^# port for http'
|
||||
insertbefore: '^www.*80/tcp'
|
||||
line: '# port for http by default'
|
||||
loop: "{{ users }}"
|
||||
|
@@ -14,10 +14,3 @@
|
||||
create_home: "{{ item.home | default(false) }}"
|
||||
loop: "{{ users }}"
|
||||
when: users is defined
|
||||
|
||||
- name: Change favorites menu
|
||||
ansible.builtin.template:
|
||||
src: favorites.sh.j2
|
||||
dest: "{{ homedir }}/.config/autostart-scripts/favorites.sh"
|
||||
mode: a+x
|
||||
loop: "{{ users }}"
|
Reference in New Issue
Block a user