litle change

This commit is contained in:
vincent 2019-04-09 16:35:17 +02:00
parent fbce987760
commit f290f39cfc
2 changed files with 18 additions and 18 deletions

View File

@ -1,20 +1,20 @@
- name: upgrade system
pacman:
state: latest # not required. choices: absent;latest;present. Desired state of the package.
upgrade: true # not required. Whether or not to upgrade whole system.
force: true # not required. When removing package - force remove package, without any checks. When update_cache - force redownload repo databases.
update_cache: true
become: yes
register: upgrade
- debug:
var: upgrade
- name: Reboot updates to apply
reboot:
reboot_timeout: 3600
when: upgrade.changed and "linux" in upgrade.packages
become: yes
#- name: upgrade system
# pacman:
# state: latest # not required. choices: absent;latest;present. Desired state of the package.
# upgrade: true # not required. Whether or not to upgrade whole system.
# force: true # not required. When removing package - force remove package, without any checks. When update_cache - force redownload repo databases.
# update_cache: true
# become: yes
# register: upgrade
#
#- debug:
# var: upgrade
#
#- name: Reboot updates to apply
# reboot:
# reboot_timeout: 3600
# when: upgrade.changed and "linux" in upgrade.packages
# become: yes
- name: launch base install software
pacman:

View File

@ -1,4 +1,4 @@
- name: Ensure hostname set
hostname: name={{ inventory_hostname }}
become: yes