File: TEST-22-TMPFILES.07.sh

package info (click to toggle)
systemd-udeb 259-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 104,120 kB
  • sloc: ansic: 726,480; xml: 121,118; python: 35,852; sh: 33,447; cpp: 946; awk: 102; makefile: 89; lisp: 13; sed: 1
file content (30 lines) | stat: -rwxr-xr-x 588 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Verifies the issues described by https://github.com/systemd/systemd/issues/10191
set -eux
set -o pipefail

rm -rf /tmp/test-prefix

mkdir /tmp/test-prefix
touch /tmp/test-prefix/file

systemd-tmpfiles --remove - <<EOF
r /tmp/test-prefix
r /tmp/test-prefix/file
EOF

test ! -f /tmp/test-prefix/file
test ! -f /tmp/test-prefix

mkdir /tmp/test-prefix
touch /tmp/test-prefix/file

systemd-tmpfiles --remove - <<EOF
r /tmp/test-prefix/file
r /tmp/test-prefix
EOF

test ! -f /tmp/test-prefix/file
test ! -f /tmp/test-prefix