This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
docker_systems/playbook.yml

17 lines
338 B
YAML

- hosts: docker
become: true
roles:
- common
- docker
- restic
- hosts: rebootable
become: true
tasks:
- name: Check reboot if required
stat: path=/var/run/reboot-required get_md5=no
register: sym
- name: Reboot if required
reboot:
when: sym.stat.exists is defined and sym.stat.exists