]> git.phdru.name Git - ansible.git/blobdiff - playbooks/roles/debian/add-apache-vhost/tasks/dehydrated.yml
Feat: Rename `*.yml` to `*.yaml`
[ansible.git] / playbooks / roles / debian / add-apache-vhost / tasks / dehydrated.yml
diff --git a/playbooks/roles/debian/add-apache-vhost/tasks/dehydrated.yml b/playbooks/roles/debian/add-apache-vhost/tasks/dehydrated.yml
deleted file mode 100644 (file)
index cfd8725..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-- name: Create dehydrated directory
-  become: true
-  file:
-    path: "/usr/local/apache2/.dehydrated/{{ virtual_host }}"
-    state: directory
-    owner: root
-    group: root
-    mode: '0700'
-
-- name: Configure dehydrated
-  become: true
-  template:
-    src: "dehydrated/{{ item }}"
-    dest: "/usr/local/apache2/.dehydrated/{{ virtual_host }}"
-    owner: root
-    group: root
-    mode: '0600'
-    force: no
-  loop: ['config', 'domains.txt']
-
-- name: Configure dehydrated script
-  become: true
-  copy:
-    src: dehydrated
-    dest: "/usr/local/apache2/.dehydrated/{{ virtual_host }}"
-    owner: root
-    group: root
-    mode: '0700'
-    force: no