I'm using http://forge.puppetlabs.com/razorsedge/network but I can't configure it properly.
this is my puppetfile.pp
class network {
static { "eth1":
ipaddress => "1.2.3.248",
netmask => "255.255.255.128",
ensure => "up",
}
}
node default {
include eth1
}
But won't work!
The doc says
network::if::static { "eth0":
ipaddress => "1.2.3.248",
netmask => "255.255.255.128",
ensure => "up",
}
may someone point me how to trnslate this :: in a puppet file?
Thanks!