Initial version of ifstated module.

This commit is contained in:
Timo Mkinen 2009-10-06 07:37:11 +03:00
parent 702e8924ce
commit 14fc327b7a

View file

@ -0,0 +1,24 @@
# Install and configure ifstated.
#
class ifstated {
file { "/etc/ifstated.conf":
ensure => present,
source => [ "puppet:///private/ifstated.conf",
"puppet:///files/firewall/ifstated.conf.${fqdn}",
"puppet:///files/firewall/ifstated.conf", ],
mode => 0644,
owner => root,
group => wheel,
notify => Service["ifstated"],
}
service { "ifstated":
ensure => running,
enable => true,
binary => "/usr/sbin/ifstated",
start => "/usr/sbin/ifstated",
}
}