You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
241 B
YAML
12 lines
241 B
YAML
|
5 months ago
|
- hosts: server1
|
||
|
|
#remote_user: debian
|
||
|
|
become: true
|
||
|
|
become_method: sudo
|
||
|
|
tasks:
|
||
|
|
- name: ensure nginx is at the latest version
|
||
|
|
apt: name=nginx state=latest
|
||
|
|
- name: start nginx
|
||
|
|
service:
|
||
|
|
name: nginx
|
||
|
|
state: started
|