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.
15 lines
267 B
Bash
Executable File
15 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# With "e" don't attempt to set permissions when file doesn't exist, see
|
|
# https://github.com/systemd/systemd/pull/6682.
|
|
#
|
|
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
rm -fr /tmp/test
|
|
|
|
echo "e /tmp/test - root root 1d" | systemd-tmpfiles --create -
|
|
|
|
test ! -e /tmp/test
|