-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_dhall.json
55 lines (55 loc) · 1.09 KB
/
update_dhall.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[
{
"hosts": "all",
"remote_user": "root",
"serial": [
"1"
],
"tasks": [
{
"command": "kinit -R",
"delegate_to": "127.0.0.1",
"name": "renew kerberos ticket"
},
{
"command": "set_my_downtime",
"name": "declare downtime"
},
{
"command": "puppet agent --disable 'kretzke disabling to do docker update'",
"name": "disable puppet"
},
{
"command": "yum versionlock clear",
"name": "remove yum version lock"
},
{
"name": "yum update",
"yum": {
"name": [
"*"
],
"state": "latest"
}
},
{
"command": "puppet agent --enable",
"name": "enable puppet"
},
{
"command": "puppet agent -t",
"delay": 60,
"name": "run puppet",
"register": "result",
"retries": 10,
"until": "result.rc == 0"
},
{
"name": "reboot node",
"reboot": {
"reboot_timeout": 3600
}
}
]
}
]