]> git.phdru.name Git - ansible.git/blobdiff - playbooks/debian/roles/dehydrated/tasks/main.yml
Feat(apt): Remove option `purge`
[ansible.git] / playbooks / debian / roles / dehydrated / tasks / main.yml
index d43ef8a946d8cd26dd619124dd3fc0eee10140b5..0b7ae4d9901c72c960c72a1e9614cc2f3e7c69d3 100644 (file)
@@ -3,34 +3,34 @@
     module: stat
     path: /usr/local/src/LetsEncrypt/dehydrated/.git/config
   register: dehydrated
+  changed_when: not dehydrated.stat.exists
 
-- name: Install git
-  local_action:
-    module: apt
-    autoclean: yes
-    autoremove: yes
-    install_recommends: no
-    name: git
-    purge: yes
-    state: latest
-    update_cache: yes
-  when: not dehydrated.stat.exists
+- block:
+    - name: Install git
+      become: true
+      local_action:
+        module: apt
+        autoclean: yes
+        autoremove: yes
+        install_recommends: no
+        name: git
+        state: latest
+        update_cache: yes
 
-- name: Prepare to clone dehydrated
-  local_action:
-    module: file
-    path: /usr/local/src/LetsEncrypt
-    state: directory
-  when: not dehydrated.stat.exists
+    - name: Prepare to clone dehydrated
+      local_action:
+        module: file
+        path: /usr/local/src/LetsEncrypt
+        state: directory
 
-- name: Clone dehydrated
-  local_action:
-    module: git
-    repo: https://github.com/lukas2511/dehydrated.git
-    dest: /usr/local/src/LetsEncrypt/dehydrated
+    - name: Clone dehydrated
+      local_action:
+        module: git
+        repo: https://github.com/lukas2511/dehydrated.git
+        dest: /usr/local/src/LetsEncrypt/dehydrated
   when: not dehydrated.stat.exists
 
-- name: Prepare the server to syncronize dehydrated
+- name: Prepare the server to synchronize dehydrated
   become: true
   file:
     path: /usr/local/src/LetsEncrypt
@@ -39,7 +39,7 @@
     group: staff
     mode: "ug+rwx,o+rx,g+s"
 
-- name: Syncronize dehydrated to the server
+- name: Synchronize dehydrated to the server
   synchronize:
     src: /usr/local/src/LetsEncrypt/dehydrated
     dest: /usr/local/src/LetsEncrypt