-
Notifications
You must be signed in to change notification settings - Fork 794
Ubuntu vivid should use systemd not upstart #769
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
Conversation
default: { | ||
$server_service_provider = upstart | ||
} | ||
} |
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.
and this whole thing can be replaced with a selector:
$server_service_provider = $::lsbdistcodename {
'vivid' => 'systemd',
default: 'upstart'
}
and now the problem becomes extending it for future versions…
i'm really starting to feel the burden of the systemd breakage in debuntu… :(
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.
@igalic thanks for the tip! Will implement
Please don't use codenames for these checks, but a open range on the release version. We can expect that from now on all Ubuntu releases will use systemd. |
@DavidS would be glad to, but you're gonna have to point me in the right direction for that |
@DavidS |
Almost :-)
|
Hi @gabriel403, any progress on this PR? |
@bmjen hi sorry! Will sort this tonight :) |
@gabriel403 looks good, except for the missing
|
@DavidS looks like we have a winner? Anything else you'd like me to do? |
Ubuntu vivid should use systemd not upstart
Celebrate? :-) Thanks! |
Woo! Thanks @DavidS |
No description provided.