about summary refs log tree commit diff
path: root/nixos/modules/testing
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2020-02-28 12:17:01 +0100
committerRobert Hensing <robert@roberthensing.nl>2020-02-28 14:26:29 +0100
commit43521ac96522000b12c61e0e582ffb19b10a29d5 (patch)
tree0ae6812d5827afdd557f344aad17978fc10f62b9 /nixos/modules/testing
parente97dfe73bba2a43ee7ca41273e1fe76a21cb723f (diff)
downloadnixlib-43521ac96522000b12c61e0e582ffb19b10a29d5.tar
nixlib-43521ac96522000b12c61e0e582ffb19b10a29d5.tar.gz
nixlib-43521ac96522000b12c61e0e582ffb19b10a29d5.tar.bz2
nixlib-43521ac96522000b12c61e0e582ffb19b10a29d5.tar.lz
nixlib-43521ac96522000b12c61e0e582ffb19b10a29d5.tar.xz
nixlib-43521ac96522000b12c61e0e582ffb19b10a29d5.tar.zst
nixlib-43521ac96522000b12c61e0e582ffb19b10a29d5.zip
nixos/service-runner.nix: Allow quotes in commands + test
Diffstat (limited to 'nixos/modules/testing')
-rw-r--r--nixos/modules/testing/service-runner.nix28
1 files changed, 20 insertions, 8 deletions
diff --git a/nixos/modules/testing/service-runner.nix b/nixos/modules/testing/service-runner.nix
index 17d5e3376908..99a9f979068d 100644
--- a/nixos/modules/testing/service-runner.nix
+++ b/nixos/modules/testing/service-runner.nix
@@ -12,7 +12,10 @@ let
 
       sub run {
           my ($cmd) = @_;
-          my @args = split " ", $cmd;
+          my @args = ();
+          while ($cmd =~ /([^ \t\n']+)|(\'([^'])\')\s*/g) {
+            push @args, $1;
+          }
           my $prog;
           if (substr($args[0], 0, 1) eq "@") {
               $prog = substr($args[0], 1);
@@ -48,15 +51,20 @@ let
       '') service.environment)}
 
       # Run the ExecStartPre program.  FIXME: this could be a list.
-      my $preStart = '${service.serviceConfig.ExecStartPre or ""}';
-      if ($preStart ne "") {
+      my $preStart = <<END_CMD;
+      ${service.serviceConfig.ExecStartPre or ""}
+      END_CMD
+      if (defined $preStart && $preStart ne "\n") {
           print STDERR "running ExecStartPre: $preStart\n";
           my $res = run_wait $preStart;
           die "$0: ExecStartPre failed with status $res\n" if $res;
       };
 
       # Run the ExecStart program.
-      my $cmd = '${service.serviceConfig.ExecStart}';
+      my $cmd = <<END_CMD;
+      ${service.serviceConfig.ExecStart}
+      END_CMD
+
       print STDERR "running ExecStart: $cmd\n";
       my $mainPid = run $cmd;
       $ENV{'MAINPID'} = $mainPid;
@@ -70,8 +78,10 @@ let
       $SIG{'QUIT'} = \&intHandler;
 
       # Run the ExecStartPost program.
-      my $postStart = '${service.serviceConfig.ExecStartPost or ""}';
-      if ($postStart ne "") {
+      my $postStart = <<END_CMD;
+      ${service.serviceConfig.ExecStartPost or ""}
+      END_CMD
+      if (defined $postStart && $postStart ne "\n") {
           print STDERR "running ExecStartPost: $postStart\n";
           my $res = run_wait $postStart;
           die "$0: ExecStartPost failed with status $res\n" if $res;
@@ -82,8 +92,10 @@ let
       my $mainRes = $?;
 
       # Run the ExecStopPost program.
-      my $postStop = '${service.serviceConfig.ExecStopPost or ""}';
-      if ($postStop ne "") {
+      my $postStop = <<END_CMD;
+      ${service.serviceConfig.ExecStopPost or ""}
+      END_CMD
+      if (defined $postStop && $postStop ne "\n") {
           print STDERR "running ExecStopPost: $postStop\n";
           my $res = run_wait $postStop;
           die "$0: ExecStopPost failed with status $res\n" if $res;