-
Notifications
You must be signed in to change notification settings - Fork 446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX #239. Start run levels, dependencies in upstart and systemV impl #248
Conversation
Unfortunately I can't test in on upstart system now. |
Also, since in Upstart we could write smth like this
may be it'll be better to convert What do you think? |
I think a string is a better option. I have no idea how |
Yes, I'm also thinking about support of systemd) I'll change things to strings today. |
LGTM |
FIX #239. Start run levels, dependencies in upstart and systemV impl
@@ -9,10 +9,12 @@ author "${{author}}" | |||
# See a list of stanzas here: http://upstart.ubuntu.com/wiki/Stanzas#respawn | |||
|
|||
# When to start the service | |||
start on runlevel [2345] | |||
start on runlevel [${{start_runlevels}}] | |||
start on started (${{start_facilities}}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The round brackets causing an error, so upstart doesn't work. We need [${{start_facilities}}]
No description provided.