ansible/tasks/update_install_freebsd.yml

13 lines
244 B
YAML
Raw Normal View History

---
- name: Install updates
command:
cmd: /usr/sbin/freebsd-update install
environment:
PAGER: cat
register: installupdates
- name: show results of install updates
debug:
verbosity: 1
msg: '{{ installupdates.stdout }}'