Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fixed the mesos_version variable check, which fails if the puppet ser… #91

Merged
merged 1 commit into from
Jan 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions manifests/slave.pp
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,14 @@
$credentials_ensure = absent
}

if ($::mesos_version != undef) and (versioncmp($::mesos_version, '0.28.0') >= 0)
and $service_provider != 'systemd' {
# otherwise rely on mesos-slave defaults
$systemd_support = {'systemd_enable_support' => false}
if defined('$::mesos_version') {
if ($::mesos_version != undef) and (versioncmp($::mesos_version, '0.28.0') >= 0)
and $service_provider != 'systemd' {
# otherwise rely on mesos-slave defaults
$systemd_support = {'systemd_enable_support' => false}
} else {
$systemd_support = {}
}
} else {
$systemd_support = {}
}
Expand Down