mirror of
https://github.com/systemd/systemd.git
synced 2024-11-27 12:13:33 +08:00
07268394d6
And drop it where not necessary.
25 lines
488 B
Bash
Executable File
25 lines
488 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
RESULTS_FILE=/tmp/testsuite66serviceresults
|
|
|
|
systemd-analyze log-level debug
|
|
|
|
systemctl start testsuite-66-deviceisolation.service
|
|
|
|
sleep 5
|
|
grep -q "Operation not permitted" "$RESULTS_FILE"
|
|
|
|
systemctl daemon-reload
|
|
systemctl daemon-reexec
|
|
|
|
systemctl stop testsuite-66-deviceisolation.service
|
|
|
|
grep -q "thisshouldnotbehere" "$RESULTS_FILE" && exit 42
|
|
|
|
systemd-analyze log-level info
|
|
|
|
touch /testok
|