Displaying 1 result from an estimated 1 matches for "dhcpfile".
Did you mean:
depfile
2007 Jul 16
5
exec and notify
...er how many resources triggered it.
consider the following class:
class dhcp {
$prefix = "/usr/local/etc/dhcpd"
$dhcpd_conf = "$prefix/dhcpd.conf"
$tools_dir = "$prefix/tools"
$notify_recpts = "netops-notice@csub.edu svn-dhcp-watchers@csub.edu"
define dhcpfile {
file { $name:
path => "$prefix/$name",
owner => "root",
group => "wheel",
mode => 0644,
source => "puppet://svn.csub.edu/dist/dhcp/$name",
notify => Exec[reload]
}
}
file {
"$prefix":
ensure => di...