38 lines
1 KiB
YAML
38 lines
1 KiB
YAML
- name: Dossier du thème plymouth
|
|
ansible.builtin.file:
|
|
path: /usr/share/plymouth/themes/spin-libretic
|
|
state: directory
|
|
owner: root
|
|
group: root
|
|
mode: u=rwx,g=rx,o=rx
|
|
notify: update-initramfs
|
|
|
|
- name: Copie le thème plymouth
|
|
ansible.builtin.copy:
|
|
src: spin-libretic
|
|
dest: /usr/share/plymouth/themes/
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r
|
|
notify: update-initramfs
|
|
|
|
- name: Active le thème plymouth
|
|
ansible.builtin.file:
|
|
src: /usr/share/plymouth/themes/spin-libretic/spin-libretic.plymouth
|
|
dest: /etc/alternatives/default.plymouth
|
|
state: link
|
|
notify: update-initramfs
|
|
|
|
- name: Copie le fond d'écran
|
|
ansible.builtin.copy:
|
|
src: linux-mint-libretic-wallpaper.jpg
|
|
dest: /usr/share/backgrounds/linuxmint/
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r
|
|
|
|
- name: Active le fond d'écran
|
|
ansible.builtin.file:
|
|
src: /usr/share/backgrounds/linuxmint/linux-mint-libretic-wallpaper.jpg
|
|
dest: /usr/share/backgrounds/linuxmint/default_background.jpg
|
|
state: link
|