X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=playbooks%2Fdebian%2Froles%2Finstall-dehydrated%2Ftasks%2Fmain.yml;h=7672bc86c05be347305e4db09d28f6bca6a21d3a;hb=32266b707ada32788d608fa6fbe7f1de623f2755;hp=dbd994c6c617627ef17e6dac40dce6e3d0863f50;hpb=3969daf3a2f4c5c2cf5f9badbaee33eddbacd7dd;p=ansible.git diff --git a/playbooks/debian/roles/install-dehydrated/tasks/main.yml b/playbooks/debian/roles/install-dehydrated/tasks/main.yml index dbd994c..7672bc8 100644 --- a/playbooks/debian/roles/install-dehydrated/tasks/main.yml +++ b/playbooks/debian/roles/install-dehydrated/tasks/main.yml @@ -1,8 +1,8 @@ - name: Test if dehydrated is already cloned - local_action: command test -f /usr/local/src/LetsEncrypt/dehydrated/.git/config - failed_when: false - register: dehydrated_exist - changed_when: dehydrated_exist.rc != 0 + local_action: + module: stat + path: /usr/local/src/LetsEncrypt/dehydrated/.git/config + register: dehydrated - name: Install git local_action: @@ -14,21 +14,21 @@ purge: yes state: latest update_cache: yes - when: dehydrated_exist.rc != 0 + when: dehydrated.stat.exists - name: Prepare to clone dehydrated local_action: module: file path: /usr/local/src/LetsEncrypt state: directory - when: dehydrated_exist.rc != 0 + when: dehydrated.stat.exists - name: Clone dehydrated local_action: module: git repo: https://github.com/lukas2511/dehydrated.git dest: /usr/local/src/LetsEncrypt - when: dehydrated_exist.rc != 0 + when: dehydrated.stat.exists - name: Prepare the server to syncronize dehydrated become: true