3
0
Fork 0
forked from mirrors/nixpkgs

acme: Use chown -R for challenges directory. Fixes #24529.

Commit 75f131da02 added
`chown 'nginx:nginx' '/var/lib/acme'` to the pre-start script,
but since it doesn't use `chown -R`, it is possible that there
are older existing subdirs (like `acme-challenge`)
that are owned to `root` from before that commit went it.
This commit is contained in:
Niklas Hambüchen 2017-04-01 14:42:21 +02:00
parent b78f16b337
commit ee0f3e7ad9

View file

@ -178,7 +178,7 @@ in
path = [ pkgs.simp_le ];
preStart = ''
mkdir -p '${cfg.directory}'
chown '${data.user}:${data.group}' '${cfg.directory}'
chown -R '${data.user}:${data.group}' '${cfg.directory}'
if [ ! -d '${cpath}' ]; then
mkdir '${cpath}'
fi