diff options
author | Ben Boeckel <mathstuf@gmail.com> | 2019-04-27 02:22:40 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-04-29 16:47:18 +0200 |
commit | 5238e9575906297608ff802a27e2ff9effa3b338 (patch) | |
tree | e17c534a09908167a0697a49ed3237f43134eb4c /test/TEST-20-MAINPIDGAMES | |
parent | network: drop invalid assertion (diff) | |
download | systemd-5238e9575906297608ff802a27e2ff9effa3b338.tar.xz systemd-5238e9575906297608ff802a27e2ff9effa3b338.zip |
codespell: fix spelling errors
Diffstat (limited to 'test/TEST-20-MAINPIDGAMES')
-rwxr-xr-x | test/TEST-20-MAINPIDGAMES/testsuite.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TEST-20-MAINPIDGAMES/testsuite.sh b/test/TEST-20-MAINPIDGAMES/testsuite.sh index 9471a5d734..904ac0e3b8 100755 --- a/test/TEST-20-MAINPIDGAMES/testsuite.sh +++ b/test/TEST-20-MAINPIDGAMES/testsuite.sh @@ -42,11 +42,11 @@ test `systemctl show -p MainPID --value testsuite.service` -eq $$ systemd-notify MAINPID=1073741824 test `systemctl show -p MainPID --value testsuite.service` -eq $$ -# Change it again to the external PID, without priviliges this time. This should be ignored, because the PID is from outside of our cgroup and we lack privileges. +# Change it again to the external PID, without privileges this time. This should be ignored, because the PID is from outside of our cgroup and we lack privileges. systemd-notify --uid=1000 MAINPID=$EXTERNALPID test `systemctl show -p MainPID --value testsuite.service` -eq $$ -# Change it again to the internal PID, without priviliges this time. This should work, as the process is on our cgroup, and that's enough even if we lack privileges. +# Change it again to the internal PID, without privileges this time. This should work, as the process is on our cgroup, and that's enough even if we lack privileges. systemd-notify --uid=1000 MAINPID=$INTERNALPID test `systemctl show -p MainPID --value testsuite.service` -eq $INTERNALPID |