init: escaping of quotes in exec doesn't work
Bug #537668 reported by
Tom Wright
This bug affects 3 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
upstart |
Confirmed
|
Medium
|
Unassigned |
Bug Description
The following configuration produces no output in /tmp/quote-test
----
description "Illustrates that quoting doesn't work"
respawn
respawn limit 30 7
exec echo "hello \" " >> /tmp/quote-test
-----
But this configuration does
----
description "Illustrates that quoting doesn't work"
respawn
respawn limit 30 7
exec echo "hello " >> /tmp/quote-test
-----
This is not what one would expect.
summary: |
- Escaping of quotes in and exec string doesn't work + init: escaping of quotes in exec doesn't work |
Changed in upstart: | |
status: | New → Confirmed |
importance: | Undecided → Medium |
To post a comment you must log in.
Hello