Add base network and ntp profile site

This commit is contained in:
root 2016-09-07 10:36:34 +00:00
parent 3c1d5c6e67
commit 7cc5fc6ab5

View File

@ -2,4 +2,15 @@ class profile::base {
#the base profile should include component modules that will be on all nodes
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',
}
}
}