
This is needed to support ubuntu xenial. Change-Id: If30bff94ee0136fbadee7ce994b25842a1cc4270 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
13 lines
280 B
Puppet
13 lines
280 B
Puppet
# Class: meetbot::params
|
|
#
|
|
class meetbot::params {
|
|
$plugins_dir = $::lsbdistcodename ? {
|
|
'xenial' => '/usr/lib/python2.7/dist-packages',
|
|
default => '/usr/share/pyshared',
|
|
}
|
|
$initd = $::lsbdistcodename ? {
|
|
'trusty' => 'upstart',
|
|
default => 'systemd',
|
|
}
|
|
}
|