15 lines
333 B
YAML
15 lines
333 B
YAML
# vim:ts=2:sw=2:et:filetype=ansible
|
|
---
|
|
- name: Install updates
|
|
ansible.builtin.command:
|
|
cmd: /usr/sbin/freebsd-update install
|
|
changed_when: true
|
|
environment:
|
|
PAGER: cat
|
|
register: installupdates
|
|
|
|
- name: Show results of install updates
|
|
ansible.builtin.debug:
|
|
verbosity: 1
|
|
msg: '{{ installupdates.stdout }}'
|