mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
ecf63c9102
The man pages state that the '+' prefix in Exec* directives should ignore filesystem namespacing options such as PrivateTmp. Now it does. This is very similar to #8842, just with PrivateTmp instead of PrivateDevices.
17 lines
441 B
Desktop File
17 lines
441 B
Desktop File
[Unit]
|
|
Description=Test for basic execution
|
|
ConditionKernelVersion=">=3.0"
|
|
ConditionKernelVersion=">=2.0" "<=60" "!=1.4"
|
|
ConditionKernelVersion=" >= 2.0" " <= 60 " "!= 1.4"
|
|
ConditionKernelVersion=" >= 2.0" " * " "*.*"
|
|
|
|
[Service]
|
|
ExecStart=touch /tmp/a ; /bin/sh -c 'touch /tmp/b' ; touch /tmp/c
|
|
ExecStart=test -f /tmp/a
|
|
ExecStart=!test -f /tmp/b
|
|
ExecStart=!!test -f /tmp/c
|
|
ExecStartPost=rm /tmp/a /tmp/b /tmp/c
|
|
|
|
PrivateTmp=true
|
|
Type=oneshot
|