Project

General

Profile

Download (330 Bytes) Statistics
| Branch: | Tag: | Revision:
# TFTP service
class tftp::service {

# No service needed if not daemonized
case $tftp::params::daemon {
false: { }
default: {
service { $tftp::params::service:
ensure => running,
enable => true,
alias => 'tftpd',
subscribe => Class['tftp::config'],
}
}
}
}
(5-5/5)