We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ded9dd4 commit 1cff4a9Copy full SHA for 1cff4a9
cmdeploy/src/cmdeploy/acmetool/__init__.py
@@ -19,12 +19,18 @@ def deploy_acmetool(email="", domains=[]):
19
)
20
21
files.put(
22
+ name="Install acmetool hook.",
23
src=importlib.resources.files(__package__).joinpath("acmetool.hook").open("rb"),
- dest="/usr/lib/acme/hooks/nginx",
24
+ dest="/etc/acme/hooks/nginx",
25
user="root",
26
group="root",
27
mode="744",
28
29
+ files.file(
30
+ name="Remove acmetool hook from the wrong location where it was previously installed.",
31
+ path="/usr/lib/acme/hooks/nginx",
32
+ present=False,
33
+ )
34
35
files.template(
36
src=importlib.resources.files(__package__).joinpath("response-file.yaml.j2"),
0 commit comments