mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
22d3cfe54c
Those are all consumed by our parser, so they all support comments. I was considering whether they should have a license header at all, but in the end I decided to add it because those files are often created by copying parts of real unit files. And if the real ones have a license, then those might as well. It's easier to add it than to make an exception.
22 lines
974 B
Desktop File
22 lines
974 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test DynamicUser= with StateDirectory=
|
|
|
|
[Service]
|
|
ExecStart=test -w /var/lib/waldo
|
|
ExecStart=test -w /var/lib/quux/pief
|
|
ExecStart=touch /var/lib/waldo/yay
|
|
ExecStart=touch /var/lib/quux/pief/yayyay
|
|
ExecStart=test -f /var/lib/waldo/yay
|
|
ExecStart=test -f /var/lib/quux/pief/yayyay
|
|
ExecStart=test -f /var/lib/private/waldo/yay
|
|
ExecStart=test -f /var/lib/private/quux/pief/yayyay
|
|
ExecStart=sh -x -c 'test "$$STATE_DIRECTORY" = "%S/waldo:%S/quux/pief"'
|
|
|
|
# Make sure that /var/lib/private/waldo is really the only writable directory besides the obvious candidates
|
|
ExecStart=sh -x -c 'test $$(find / \\( -path /var/tmp -o -path /tmp -o -path /proc -o -path /dev/mqueue -o -path /dev/shm -o -path /sys/fs/bpf -o -path /dev/.lxc \\) -prune -o -type d -writable -print 2>/dev/null | sort -u | tr -d "\\\\n") = /var/lib/private/quux/pief/var/lib/private/waldo'
|
|
|
|
Type=oneshot
|
|
DynamicUser=yes
|
|
StateDirectory=waldo quux/pief
|