diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-12 03:22:11 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-12 03:24:10 +0000 |
commit | b04b3e580313e7b1c3dd6ba24b27f1a7678d5de2 (patch) | |
tree | 730303e1dfa957296d0c3880a5a15c4318859680 /test/unstoppable.service | |
parent | fb5c8184a99ed3379d6a48eed2b83f6f7ee9ee18 (diff) |
tests: fix unstoppable service
[/etc/systemd/system/unstoppable.service:4] Unbalanced quoting,
ignoring: "/bin/echo 'I'm unstoppable!'"
Diffstat (limited to 'test/unstoppable.service')
-rw-r--r-- | test/unstoppable.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unstoppable.service b/test/unstoppable.service index 24fb0a25e1..56b72c98f7 100644 --- a/test/unstoppable.service +++ b/test/unstoppable.service @@ -1,5 +1,5 @@ [Service] Type=oneshot RemainAfterExit=yes -ExecStart=/bin/echo 'I'm unstoppable!' +ExecStart=/bin/echo "I'm unstoppable!" ExecStop=/bin/systemctl start --no-block unstoppable.service |