Displaying 1 result from an estimated 1 matches for "id8dbqfgvwmk".
Did you mean:
id8dbqfgvm
2007 May 24
2
Reusing definitions - need to pass variable in the title
I recently tidied up a class/definition combo that sets /etc/issue and
/etc/issue.net. This failed:
define issuefile($path) {
file { issue:
owner => root,
group => root,
mode => 0644,
content => template("issue_conf")
}
}
class issue {
issuefile { "issue":
path => "/etc/issue"
}
}
class