Displaying 1 result from an estimated 1 matches for "usr_bin_files".
2007 Mar 29
2
case statement - Invalid tag error
...----------------------------------------------------------
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", "watch"]
    check_usr_bin { $usr_bin_files: }
}
-------------------------------------------------------------------------------------
I didn''t find anything in bug reports about this.  I haven''t been able
to find w...