1
1
mirror of https://github.com/ryantm/agenix.git synced 2024-08-15 17:10:42 +03:00
This commit is contained in:
Nathan Henrie 2023-01-30 14:21:42 -07:00
parent c69689da58
commit 9b94b43971

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;
};
};
})
]);