21 lines
470 B
YAML
21 lines
470 B
YAML
---
|
|
- name: Update Yunohost
|
|
hosts: all
|
|
|
|
tasks:
|
|
- name: On execute la commande "dpkg --configure -a"
|
|
shell:
|
|
cmd: dpkg --configure -a
|
|
|
|
- name: On execute la commande "yunohost tools update"
|
|
shell:
|
|
cmd: yunohost tools update
|
|
|
|
- name: On execute la commande "yunohost tools upgrade --system"
|
|
shell:
|
|
cmd: yunohost tools upgrade --system
|
|
|
|
- name: On execute la commande "dpkg --configure -a"
|
|
shell:
|
|
cmd: dpkg --configure -a
|