Re: [systemd-devel] Argument quoting in Exec lines

2012-09-10 Thread Lennart Poettering
On Tue, 04.09.12 09:12, Daniel Drake ([email protected]) wrote: > Hi, > > Not sure whether to submit a bug report or documentation patch for this. > > ExecStart=/usr/bin/foo --arg1="foo bar" > > Causes foo to be run with 2 command line args: > 1. --arg1="foo > 2. bar" > > Not what I was hoping

[systemd-devel] Argument quoting in Exec lines

2012-09-04 Thread Daniel Drake
Hi, Not sure whether to submit a bug report or documentation patch for this. ExecStart=/usr/bin/foo --arg1="foo bar" Causes foo to be run with 2 command line args: 1. --arg1="foo 2. bar" Not what I was hoping for. Whereas: ExecStart=/usr/bin/foo "--arg1=foo bar" does what I want, just 1 c