Compare commits

..

No commits in common. "970eda96d212c8af47e1d1bce366c4a04213931a" and "c5bddc3f31db6891f251d72567d6fd1b507f33c2" have entirely different histories.

2 changed files with 22 additions and 1 deletions

View file

@ -80,6 +80,9 @@
loop_var: rolename
when: custom_roles is defined
#################
- name: Final tasks
ansible.builtin.include_role:
name: "{{ role }}"
@ -90,6 +93,25 @@
- lmn_finish
- lmn_tmpfixes
#################
- name: Apply additional laptop configuration
hosts: laptop
remote_user: ansible
become: true
vars_files: lmn-vault
tasks:
- name: Remove deprecated files and directories (laptop-class)
ansible.builtin.file:
path: "{{ item }}"
state: absent
with_items:
- /etc/systemd/network/80-wlan-dhcp.network
- /etc/systemd/network/wlan-dhcp.network
- /etc/systemd/network/virbr1.netdev
- /etc/systemd/network/virbr1.network
- /etc/systemd/network/wlan-dhcp.network
- /etc/NetworkManager/system-connections/FVS-devices.nmconnection
- name: Apply roles that must run serial
hosts: all

View file

@ -8,4 +8,3 @@
ansible.builtin.systemd:
name: polkit
state: restarted
when: not run_in_installer|default(false)|bool