2012-05-17 20:22:56 +00:00
|
|
|
class tc::debian($config) {
|
|
|
|
$packages = [ 'ethtool' ]
|
|
|
|
|
2012-05-17 20:40:21 +00:00
|
|
|
package { $packages: ensure => installed }
|
|
|
|
|
2012-05-17 20:22:56 +00:00
|
|
|
init_d_bundle { 'tc':
|
|
|
|
init_d_prolog => template('tc/debian/init-d-prolog'),
|
|
|
|
init_d_prerun => template('tc/debian/init-d-prerun'),
|
|
|
|
require => Class['squid']
|
|
|
|
}
|
|
|
|
}
|