mesosphere / chronos-pkg

Apache License 2.0
5 stars 16 forks source link

upstart script doesn't respect flag only parameter #9

Closed j1n6 closed 9 years ago

j1n6 commented 9 years ago

I want to enable mail_ssl with the upstart script. When creating an empty file in conf/mail_ssl directory, chronos failed to start.

It seems the script generates a startup command with --mail--ssl ''

Do you have any known workaround?

lloesche commented 9 years ago

Flags are prefixed with ?

E.g.

touch conf/?mail_ssl
j1n6 commented 9 years ago

Thanks, I will try that.