add upgrade system to bootstrap
This commit is contained in:
parent
64683c9987
commit
2cde21dcb9
@ -4,6 +4,21 @@
|
||||
- name: "install python and archlinux-keyring"
|
||||
raw: pacman -Sy python archlinux-keyring --noconfirm
|
||||
|
||||
- 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
|
||||
|
||||
- name: Reboot updates to apply
|
||||
reboot:
|
||||
reboot_timeout: 3600
|
||||
when: upgrade.changed and "linux" in upgrade.packages
|
||||
become: yes
|
||||
|
||||
- name: sudoers install
|
||||
pacman:
|
||||
state: present # not required. choices: absent;latest;present. Desired state of the package.
|
||||
|
Loading…
Reference in New Issue
Block a user