postsrsd: fix secret generation
This commit is contained in:
parent
c8ca34e269
commit
b12646cb79
|
@ -95,7 +95,11 @@ in {
|
||||||
preStart = ''
|
preStart = ''
|
||||||
if [ ! -e "${cfg.secretsFile}" ]; then
|
if [ ! -e "${cfg.secretsFile}" ]; then
|
||||||
echo "WARNING: secrets file not found, autogenerating!"
|
echo "WARNING: secrets file not found, autogenerating!"
|
||||||
mkdir -p -m750 "$(dirname "${cfg.secretsFile}")"
|
DIR="$(dirname "${cfg.secretsFile}")"
|
||||||
|
if [ ! -d "$DIR" ]; then
|
||||||
|
mkdir -p -m750 "$DIR"
|
||||||
|
chown "${cfg.user}:${cfg.group}" "$DIR"
|
||||||
|
fi
|
||||||
dd if=/dev/random bs=18 count=1 | base64 > "${cfg.secretsFile}"
|
dd if=/dev/random bs=18 count=1 | base64 > "${cfg.secretsFile}"
|
||||||
chmod 600 "${cfg.secretsFile}"
|
chmod 600 "${cfg.secretsFile}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue