]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/test-execute/exec-condition-failed.service
Merge pull request #14194 from yuwata/network-multipath-routing-12541
[thirdparty/systemd.git] / test / test-execute / exec-condition-failed.service
1 [Unit]
2 Description=Test for exec condition that fails the unit
3
4 [Service]
5 Type=oneshot
6
7 # exit 255 will fail the unit
8 ExecCondition=/bin/sh -c 'exit 255'
9
10 # This should not get run
11 ExecStart=/bin/sh -c 'true'