mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-16 07:41:38 +02:00
Fix syntax error with file module usage.
This commit is contained in:
parent
0ba7078e8c
commit
56ba6ad847
@ -12,8 +12,9 @@ Generally, installing from source (see section `Source Installation from Git`) l
|
||||
|
||||
## Role Variables
|
||||
|
||||
TODO.
|
||||
certbot_install_method: package
|
||||
|
||||
Controls how Certbot is installed. Available options are 'package', 'snap', and 'source'.
|
||||
|
||||
certbot_auto_renew: true
|
||||
certbot_auto_renew_user: "{{ ansible_user | default(lookup('env', 'USER')) }}"
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
- name: Enable classic snap support.
|
||||
file:
|
||||
source: /var/lib/snapd/snap
|
||||
src: /var/lib/snapd/snap
|
||||
dest: /snap
|
||||
state: link
|
||||
|
||||
@ -22,6 +22,6 @@
|
||||
|
||||
- name: Symlink certbot into place.
|
||||
file:
|
||||
source: /snap/bin/certbot
|
||||
src: /snap/bin/certbot
|
||||
dest: /usr/bin/certbot
|
||||
state: link
|
||||
|
Loading…
x
Reference in New Issue
Block a user