Browse Source

current

master
parent
commit
1a361d46dc
2 changed files with 15 additions and 0 deletions
  1. +1
    -0
      tasks/main.yml
  2. +14
    -0
      tasks/setup_Debian.yml

+ 1
- 0
tasks/main.yml View File

@@ -0,0 +1 @@
---

+ 14
- 0
tasks/setup_Debian.yml View File

@@ -0,0 +1,14 @@
---

- name: install apt packages
apt:
pkg: "{{item}}"
state: present
with_items:
- nginx
- nginx-full

- name: remove default page
file:
path: /var/www/html/index.nginx-debian.html
state: absent

Loading…
Cancel
Save