Project

General

Profile

Download (444 Bytes) Statistics
| Branch: | Tag: | Revision:
class tftp::install {
case $::operatingsystem {
redhat,centos,fedora,Scientific: {
$tftp_package = 'tftp-server'
}
Debian: {
$tftp_package = 'tftpd-hpa'
}
default: {
fail("${::hostname}: This module does not support operatingsystem ${::operatingsystem}")
}
}

package { $tftp_package:
ensure => installed,
alias => 'tftp-server'
}

package {'syslinux':
ensure => installed
}
}
(3-3/5)