summaryrefslogtreecommitdiff
path: root/tests/networking-hostname.nix
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /tests/networking-hostname.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'tests/networking-hostname.nix')
-rw-r--r--tests/networking-hostname.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/networking-hostname.nix b/tests/networking-hostname.nix
index 3793958..9e8c6fd 100644
--- a/tests/networking-hostname.nix
+++ b/tests/networking-hostname.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, ... }:
+{ lib, config, pkgs, ... }:
{
networking.hostName = "EVE";
@@ -7,8 +7,8 @@
test = ''
echo checking hostname in /activate >&2
grep "scutil --set ComputerName 'EVE’s MacBook Pro'" ${config.out}/activate
- grep "scutil --set LocalHostName 'EVE'" ${config.out}/activate
- grep "scutil --set HostName 'EVE'" ${config.out}/activate
+ grep "scutil --set LocalHostName ${lib.escapeShellArg "EVE"}" ${config.out}/activate
+ grep "scutil --set HostName ${lib.escapeShellArg "EVE"}" ${config.out}/activate
echo checking defaults write in ${config.out}/activate-user >&2
'';
}