Displaying 1 result from an estimated 1 matches for "check_usr_bin".
2007 Mar 29
2
case statement - Invalid tag error
...in the
following error.
[root@puppet classes]# puppetd -v -o
notice: Ignoring --listen on onetime run
info: Facts have changed; recompiling
err: Could not retrieve configuration: Invalid tag "w"
-------------------------------------------------------------------------------------
define check_usr_bin {
case $name {
"w", "watch": { file { "/usr/bin/$name": mode => 0555 } }
default: { file { "/usr/bin/$name": mode => 0755 } }
}
}
class check_usr_bin_files {
$usr_bin_files = ["at", "w", "watc...