2015-05-27 22:02:50 +00:00
|
|
|
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' ],
|
|
|
|
}
|
|
|
|
|
|
|
|
network::mroute { 'eth0':
|
|
|
|
routes => {
|
|
|
|
'192.168.2.0/24' => '192.168.1.1',
|
|
|
|
'80.81.82.0/16' => 'eth0',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-27 22:02:50 +00:00
|
|
|
}
|