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