flake.nix: let microvm-update-** properly create gcroots symlinks

This commit is contained in:
Astro 2022-09-14 00:19:59 +02:00
parent 57731ad815
commit f464427520
1 changed files with 6 additions and 3 deletions

View File

@ -323,9 +323,9 @@
echo '${selfRef}' > flake
[ -e old ] && nix store diff-closures ./old ./current
ln -sfT $PWD/current /nix/var/nix/gcroots/microvm/${name}
ln -sfT $PWD/booted /nix/var/nix/gcroots/microvm/booted-${name}
ln -sfT $PWD/old /nix/var/nix/gcroots/microvm/old-${name}
ln -sfT `pwd`/current /nix/var/nix/gcroots/microvm/${name}
ln -sfT `pwd`/booted /nix/var/nix/gcroots/microvm/booted-${name}
ln -sfT `pwd`/old /nix/var/nix/gcroots/microvm/old-${name}
systemctl restart microvm@${name}.service
END
@ -348,6 +348,9 @@
echo '${selfRef}' > flake
[ -e old ] && nix store diff-closures ./old ./current
ln -sfT `pwd`/current /nix/var/nix/gcroots/microvm/${name}
ln -sfT `pwd`/booted /nix/var/nix/gcroots/microvm/booted-${name}
ln -sfT `pwd`/old /nix/var/nix/gcroots/microvm/old-${name}
systemctl restart microvm@${name}.service
END