summaryrefslogtreecommitdiff
path: root/tests/services-activate-system.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/services-activate-system.nix')
-rw-r--r--tests/services-activate-system.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/services-activate-system.nix b/tests/services-activate-system.nix
index 02eaf3c..702bb26 100644
--- a/tests/services-activate-system.nix
+++ b/tests/services-activate-system.nix
@@ -1,14 +1,12 @@
{ config, pkgs, ... }:
{
- services.activate-system.enable = true;
-
test = ''
echo checking activation service in /Library/LaunchDaemons >&2
grep "org.nixos.activate-system" ${config.out}/Library/LaunchDaemons/org.nixos.activate-system.plist
echo checking activation of /run/current-system >&2
- script=$(cat ${config.out}/Library/LaunchDaemons/org.nixos.activate-system.plist | awk -F'[< ]' '$3 ~ "^/nix/store/.*" {print $3}')
+ script=$(cat ${config.out}/Library/LaunchDaemons/org.nixos.activate-system.plist | awk -F'[< ]' '$6 ~ "^/nix/store/.*" {print $6}')
grep "ln -sfn .* /run/current-system" "$script"
'';
}