mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 01:30:48 +03:00
format
This commit is contained in:
parent
c69689da58
commit
9b94b43971
1 changed files with 6 additions and 3 deletions
|
@ -90,7 +90,8 @@ with lib; let
|
||||||
'';
|
'';
|
||||||
|
|
||||||
testIdentities =
|
testIdentities =
|
||||||
map (path: ''
|
map
|
||||||
|
(path: ''
|
||||||
test -f ${path} || echo '[agenix] WARNING: config.age.identityPaths entry ${path} not present!'
|
test -f ${path} || echo '[agenix] WARNING: config.age.identityPaths entry ${path} not present!'
|
||||||
'')
|
'')
|
||||||
cfg.identityPaths;
|
cfg.identityPaths;
|
||||||
|
@ -301,8 +302,10 @@ in {
|
||||||
${chownSecrets}
|
${chownSecrets}
|
||||||
exit 0
|
exit 0
|
||||||
'';
|
'';
|
||||||
serviceConfig.RunAtLoad = true;
|
serviceConfig = {
|
||||||
serviceConfig.KeepAlive.SuccessfulExit = false;
|
RunAtLoad = true;
|
||||||
|
KeepAlive.SuccessfulExit = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue