mirror of
https://github.com/ardichoke/puppet-arpwatch.git
synced 2026-05-11 02:15:37 -04:00
30 lines
786 B
Puppet
30 lines
786 B
Puppet
# Class: arpwatch::params
|
|
# ========================
|
|
class arpwatch::params {
|
|
$package_name = 'arpwatch'
|
|
$service_name = 'arpwatch'
|
|
|
|
case $::osfamily {
|
|
'RedHat': {
|
|
$interface = 'eth0'
|
|
$config_file = '/etc/sysconfig/arpwatch'
|
|
$config_template = 'arpwatch/conf.rhel.erb'
|
|
$opts = ''
|
|
$service_user = $::operatingsystemmajrelease ? {
|
|
'5' => 'pcap',
|
|
default => 'arpwatch',
|
|
}
|
|
}
|
|
'Debian': {
|
|
$interface = 'eth0'
|
|
$config_file = '/etc/default/arpwatch'
|
|
$config_template = 'arpwatch/conf.deb.erb'
|
|
$service_user = 'arpwatch'
|
|
$opts = '-N -p'
|
|
}
|
|
default: {
|
|
fail("The ${module_name} module is not supported on an ${::osfamily} distribution.")
|
|
}
|
|
}
|
|
}
|