test1/ansible/playbook.yml
Vladislav ad4636e4b8
Some checks failed
CI Pipeline / lint (push) Failing after 3m42s
CI Pipeline / test (push) Successful in 18s
CI Pipeline / build (push) Has been skipped
test pipeline 1
2025-05-21 21:15:44 +03:00

14 lines
267 B
YAML

---
- name: install and start nginx
hosts: all
become: yes
tasks:
- name: install ngnx
apt:
name: nginx
state: latest
- name: start engineX
service:
name: nginx
state: started
enabled: yes