Repository URL to install this package:
|
Version:
257.4-3-nw1 ▾
|
systemd-tests
/
usr
/
lib
/
systemd
/
tests
/
testdata
/
test-execute
/
exec-temporaryfilesystem-usr.service
|
|---|
# SPDX-License-Identifier: LGPL-2.1-or-later
[Unit]
Description=Test for TemporaryFileSystem on /usr
[Service]
Type=oneshot
# Check TemporaryFileSystem= are empty
ExecStart=sh -c 'for i in $$(ls -A /usr); do test $$i = lib -o $$i = lib64 -o $$i = bin -o $$i = sbin || false; done'
# Cannot create files under /usr
ExecStart=sh -c '! touch /usr/hoge'
ExecStart=sh -c '! touch /usr/bin/hoge'
TemporaryFileSystem=/usr:ro
BindReadOnlyPaths=-/usr/lib -/usr/lib64 /usr/bin /usr/sbin