Install lmn package.
This commit is contained in:
parent
dd2dd74a88
commit
f88626ec7e
1 changed files with 17 additions and 3 deletions
|
@ -39,13 +39,13 @@
|
||||||
ansible_python_interpreter: "/usr/bin/python3"
|
ansible_python_interpreter: "/usr/bin/python3"
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
|
## Choose either gnome or KDE:
|
||||||
|
#- gnome
|
||||||
|
- kde
|
||||||
- up2date_debian
|
- up2date_debian
|
||||||
# - fvs-sssd
|
# - fvs-sssd
|
||||||
# - fvs-mount
|
# - fvs-mount
|
||||||
# - fvs-client
|
# - fvs-client
|
||||||
## Choose either gnome or KDE:
|
|
||||||
#- gnome
|
|
||||||
- kde
|
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: Add local user 'virti' in the 'libvirt' group
|
- name: Add local user 'virti' in the 'libvirt' group
|
||||||
|
@ -56,3 +56,17 @@
|
||||||
shell: /bin/bash
|
shell: /bin/bash
|
||||||
groups: libvirt
|
groups: libvirt
|
||||||
append: yes
|
append: yes
|
||||||
|
- name: add lmn key
|
||||||
|
ansible.builtin.apt_key:
|
||||||
|
url: https://deb.linuxmuster.net/pub.gpg
|
||||||
|
keyring: /etc/apt/trusted.gpg.d/linuxmuster.net.gpg
|
||||||
|
- name: add lmn repo
|
||||||
|
apt_repository:
|
||||||
|
repo: deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/linuxmuster.net.gpg] http://deb.linuxmuster.net/ lmn71 main
|
||||||
|
state: present
|
||||||
|
update_cache: true
|
||||||
|
- name: install
|
||||||
|
apt:
|
||||||
|
name: linuxmuster-linuxclient7
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue