Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
systemd-tests / usr / lib / systemd / tests / testdata / test-execute / exec-temporaryfilesystem-usr.service
Size: Mime:
# 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