mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
14 lines
250 B
Bash
Executable File
14 lines
250 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 -e
|
|
|
|
rm -fr /tmp/test
|
|
|
|
echo "e /tmp/test - root root 1d" | systemd-tmpfiles --create -
|
|
|
|
! test -e /tmp/test
|