mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 05:03:09 +00:00
systemd: perform reload even in degraded state
This fixes #355, fixes #798, and fixes #909.
This commit is contained in:
parent
9e716025b6
commit
9781f3766d
1 changed files with 13 additions and 1 deletions
|
@ -242,15 +242,27 @@ in
|
||||||
'';
|
'';
|
||||||
|
|
||||||
ensureRuntimeDir = "XDG_RUNTIME_DIR=\${XDG_RUNTIME_DIR:-/run/user/$(id -u)}";
|
ensureRuntimeDir = "XDG_RUNTIME_DIR=\${XDG_RUNTIME_DIR:-/run/user/$(id -u)}";
|
||||||
|
|
||||||
|
systemctl = "${ensureRuntimeDir} ${cfg.systemctlPath}";
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
if ${ensureRuntimeDir} ${cfg.systemctlPath} --quiet --user is-system-running 2> /dev/null; then
|
systemdStatus=$(${systemctl} --user is-system-running 2>&1 || true)
|
||||||
|
|
||||||
|
if [[ $systemdStatus == 'running' || $systemdStatus == 'degraded' ]]; then
|
||||||
|
if [[ $systemdStatus == 'degraded' ]]; then
|
||||||
|
warnEcho "The user systemd session is degraded:"
|
||||||
|
systemctl --user --state=failed
|
||||||
|
warnEcho "Attempting to reload services anyway..."
|
||||||
|
fi
|
||||||
|
|
||||||
${ensureRuntimeDir} \
|
${ensureRuntimeDir} \
|
||||||
PATH=${dirOf cfg.systemctlPath}:$PATH \
|
PATH=${dirOf cfg.systemctlPath}:$PATH \
|
||||||
${if cfg.startServices then autoReloadCmd else legacyReloadCmd}
|
${if cfg.startServices then autoReloadCmd else legacyReloadCmd}
|
||||||
else
|
else
|
||||||
echo "User systemd daemon not running. Skipping reload."
|
echo "User systemd daemon not running. Skipping reload."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
unset systemdStatus
|
||||||
''
|
''
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue