22 lines
593 B
YAML
22 lines
593 B
YAML
#
|
|
# Ce playbook est à exécuter pour forcer la configuration au prochain démarrage
|
|
#
|
|
|
|
- name: Préparation de la configuration au prochain démarrage
|
|
hosts: localhost
|
|
vars_files:
|
|
- main.yml
|
|
tasks:
|
|
- name: Firstboot
|
|
ansible.builtin.file:
|
|
src: /opt/libreticmenu/libreticmenu-firstboot.service
|
|
dest: /etc/systemd/system/libreticmenu-firstboot.service
|
|
state: link
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r
|
|
|
|
- name: Active firstboot
|
|
ansible.builtin.service:
|
|
name: libreticmenu-firstboot
|
|
enabled: true
|