21 lines
260 B
JSON
21 lines
260 B
JSON
![]() |
[
|
||
|
{
|
||
|
"name": "install packages",
|
||
|
"become": true,
|
||
|
"ansible.builtin.apt": {
|
||
|
"pkg": [
|
||
|
"nginx"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "restart service",
|
||
|
"become": true,
|
||
|
"ansible.builtin.systemd_service": {
|
||
|
"state": "restarted",
|
||
|
"name": "nginx"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
|