]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/test-execute/exec-basic.service
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / test / test-execute / exec-basic.service
CommitLineData
5008da1e
ZJS
1[Unit]
2Description=Test for basic execution
3
4[Service]
b0fbf9bd 5ExecStart=touch /tmp/a ; /bin/sh -c 'touch /tmp/b' ; touch /tmp/c
5008da1e
ZJS
6ExecStart=test -f /tmp/a
7ExecStart=!test -f /tmp/b
8ExecStart=!!test -f /tmp/c
9ExecStart=+test -f /tmp/c
10ExecStartPost=rm /tmp/a /tmp/b /tmp/c
11
12PrivateTmp=true
13Type=oneshot