mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
084575ff91
This should make the scripts more robust.
50 lines
1.4 KiB
Bash
Executable File
50 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
systemd-analyze log-level debug
|
|
systemd-analyze log-target console
|
|
|
|
# Set everything up without DynamicUser=1
|
|
|
|
systemd-run --wait -p DynamicUser=0 -p StateDirectory=zzz touch /var/lib/zzz/test
|
|
systemd-run --wait -p DynamicUser=0 -p StateDirectory=zzz test -f /var/lib/zzz/test
|
|
systemd-run --wait -p DynamicUser=0 -p StateDirectory=zzz test -f /var/lib/zzz/test-missing \
|
|
&& { echo 'unexpected success'; exit 1; }
|
|
|
|
test -d /var/lib/zzz
|
|
test ! -L /var/lib/zzz
|
|
test ! -e /var/lib/private/zzz
|
|
test -f /var/lib/zzz/test
|
|
test ! -f /var/lib/zzz/test-missing
|
|
|
|
# Convert to DynamicUser=1
|
|
|
|
systemd-run --wait -p DynamicUser=1 -p StateDirectory=zzz test -f /var/lib/zzz/test
|
|
systemd-run --wait -p DynamicUser=1 -p StateDirectory=zzz test -f /var/lib/zzz/test-missing \
|
|
&& { echo 'unexpected success'; exit 1; }
|
|
|
|
test -L /var/lib/zzz
|
|
test -d /var/lib/private/zzz
|
|
|
|
test -f /var/lib/zzz/test
|
|
test ! -f /var/lib/zzz/test-missing
|
|
|
|
# Convert back
|
|
|
|
systemd-run --wait -p DynamicUser=0 -p StateDirectory=zzz test -f /var/lib/zzz/test
|
|
systemd-run --wait -p DynamicUser=0 -p StateDirectory=zzz test -f /var/lib/zzz/test-missing \
|
|
&& { echo 'unexpected success'; exit 1; }
|
|
|
|
test -d /var/lib/zzz
|
|
test ! -L /var/lib/zzz
|
|
test ! -e /var/lib/private/zzz
|
|
test -f /var/lib/zzz/test
|
|
test ! -f /var/lib/zzz/test-missing
|
|
|
|
systemd-analyze log-level info
|
|
|
|
echo OK >/testok
|
|
|
|
exit 0
|