Browse Source

Fix bug exposed by commit 264c232b (#572)

The `private_key` variable used to check for changes was never
registered.
Mike Ashley 8 years ago
parent
commit
0e7adf6e3a
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      roles/common/tasks/letsencrypt.yml

+ 1
- 0
roles/common/tasks/letsencrypt.yml View File

@@ -71,6 +71,7 @@
71 71
   copy: src=wildcard_private.key
72 72
     dest=/etc/letsencrypt/live/{{ domain }}/privkey.pem
73 73
     owner=root group=ssl-cert mode=0640
74
+  register: private_key
74 75
   when: ansible_ssh_user == "vagrant"
75 76
 
76 77
 - name: Copy SSL public certificate into place for testing

Loading…
Cancel
Save