control-repo/site/profile/manifests/base.pp

21 lines
366 B
ObjectPascal
Raw Normal View History

class profile::base {
#the base profile should include component modules that will be on all nodes
2016-09-07 10:36:34 +00:00
class { '::ntp':
servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],
}
class { 'network':
config_file_notify => '',
}
2016-09-07 10:36:34 +00:00
network::mroute { 'eth0':
routes => {
'192.168.2.0/24' => '192.168.1.1',
'80.81.82.0/16' => 'eth0',
}
}
}