diff options
Diffstat (limited to 'test/test-execute/exec-umask-0177.service')
-rw-r--r-- | test/test-execute/exec-umask-0177.service | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test-execute/exec-umask-0177.service b/test/test-execute/exec-umask-0177.service index af9295888e..a5e8fc4dbc 100644 --- a/test/test-execute/exec-umask-0177.service +++ b/test/test-execute/exec-umask-0177.service @@ -2,6 +2,7 @@ Description=Test for UMask [Service] -ExecStart=/bin/sh -c 'touch /tmp/test-exec-umask; s=$(stat -c %a /tmp/test-exec-umask); echo $s; exit $(test $s = "600")' +ExecStart=/bin/sh -x -c 'touch /tmp/test-exec-umask; mode=$$(stat -c %%a /tmp/test-exec-umask); test "$$mode" = "600"' +Type=oneshot UMask=0177 PrivateTmp=yes |