36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
|
---
|
||
|
- name: Fetch any new FreeBSD updates
|
||
|
command: freebsd-update fetch --not-running-from-cron
|
||
|
check_mode: no
|
||
|
when: ansible_distribution == 'FreeBSD'
|
||
|
register: result_update
|
||
|
changed_when: "'No updates needed' not in result_update.stdout"
|
||
|
|
||
|
- debug: var=result_update
|
||
|
when: result_update.changed
|
||
|
|
||
|
- name: Install FreeBSD updates
|
||
|
command: freebsd-update install --not-running-from-cron
|
||
|
when: ansible_distribution == 'FreeBSD' and result_update.changed and not ansible_check_mode
|
||
|
register: result_update_install
|
||
|
|
||
|
- debug: var=result_update_install
|
||
|
when: result_update_install.changed
|
||
|
|
||
|
|
||
|
- name: Upgrade FreeBSD packages - dry-run
|
||
|
command: pkg upgrade --dry-run
|
||
|
check_mode: no
|
||
|
when: ansible_distribution == 'FreeBSD' and ansible_check_mode
|
||
|
register: result_pkg
|
||
|
changed_when: "'Your packages are up to date' not in result_pkg.stdout"
|
||
|
|
||
|
- name: Upgrade FreeBSD packages
|
||
|
command: pkg upgrade --yes
|
||
|
when: ansible_distribution == 'FreeBSD' and not ansible_check_mode
|
||
|
register: result_pkg
|
||
|
changed_when: "'Your packages are up to date' not in result_pkg.stdout"
|
||
|
|
||
|
- debug: var=result_pkg
|
||
|
when: result_pkg.changed
|