This commit is contained in:
Nathan Henrie 2023-01-30 14:21:42 -07:00
parent c69689da58
commit 9b94b43971
1 changed files with 6 additions and 3 deletions

View File

@ -90,7 +90,8 @@ with lib; let
'';
testIdentities =
map (path: ''
map
(path: ''
test -f ${path} || echo '[agenix] WARNING: config.age.identityPaths entry ${path} not present!'
'')
cfg.identityPaths;
@ -301,8 +302,10 @@ in {
${chownSecrets}
exit 0
'';
serviceConfig.RunAtLoad = true;
serviceConfig.KeepAlive.SuccessfulExit = false;
serviceConfig = {
RunAtLoad = true;
KeepAlive.SuccessfulExit = false;
};
};
})
]);