blob: f8f14af3856756fd9f2f31d4b27ddb6863631bda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: Update DigitalOcean machines
hosts: digitalocean
serial: 1
vars:
digitalocean_api_url: https://api.digitalocean.com/v2
vars_files:
- misc/secrets/digitalocean.yml
roles:
- { role: shutdown }
- { role: snapshot }
- { role: poweron }
- { role: sysupgrade }
- { role: reboot }
|