This commit is contained in:
Sandro - 2023-10-29 19:36:44 +01:00
parent be418e8261
commit df33a192cc
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 2 additions and 2 deletions

View File

@ -201,13 +201,13 @@ lib.attrsets.mapAttrs
${createSymlinks name}
if [[ -n NIXOS_REBUILD ]]; then
if [[ -n $NIXOS_REBUILD ]]; then
echo "Restarting MicroVM..."
systemctl restart microvm@${name}.service
fi
END
if [[ -z NIXOS_REBUILD ]]; then
if [[ -z $NIXOS_REBUILD ]]; then
echo "Switching to configuration..."
ssh ${target} -- ${toplevelOutPath}/bin/switch-to-configuration "''${@:-switch}"
fi