ansible-example/remove_nginx.yml

10 lines
118 B
YAML
Raw Permalink Normal View History

2023-01-25 04:46:43 +00:00
- hosts: all
become: true
tasks:
- name: install nginx package
apt:
name: nginx
state: latest