mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
084575ff91
This should make the scripts more robust.
40 lines
902 B
Bash
Executable File
40 lines
902 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Inspired by https://github.com/systemd/systemd/issues/9508
|
|
#
|
|
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
test_snippet() {
|
|
systemd-tmpfiles "$@" - <<EOF
|
|
d /var/tmp/foobar-test-06
|
|
d /var/tmp/foobar-test-06/important
|
|
R /var/tmp/foobar-test-06
|
|
EOF
|
|
}
|
|
|
|
test_snippet --create --remove
|
|
test -d /var/tmp/foobar-test-06
|
|
test -d /var/tmp/foobar-test-06/important
|
|
|
|
test_snippet --remove
|
|
test ! -f /var/tmp/foobar-test-06
|
|
test ! -f /var/tmp/foobar-test-06/important
|
|
|
|
test_snippet --create
|
|
test -d /var/tmp/foobar-test-06
|
|
test -d /var/tmp/foobar-test-06/important
|
|
|
|
touch /var/tmp/foobar-test-06/something-else
|
|
|
|
test_snippet --create
|
|
test -d /var/tmp/foobar-test-06
|
|
test -d /var/tmp/foobar-test-06/important
|
|
test -f /var/tmp/foobar-test-06/something-else
|
|
|
|
test_snippet --create --remove
|
|
test -d /var/tmp/foobar-test-06
|
|
test -d /var/tmp/foobar-test-06/important
|
|
test ! -f /var/tmp/foobar-test-06/something-else
|