blob: 672a75368eda0cde3495ee4f0df4a09f4c37ba44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
- name: Update DigitalOcean machines
hosts: digitalocean
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 }
|