Puppet Class: wso2base::hosts
- Inherits:
- wso2base::params
- Defined in:
- manifests/hosts.pp
Overview
2 3 4 5 6 7 8 9 10 11 |
# File 'manifests/hosts.pp', line 2
class wso2base::hosts (
) inherits wso2base::params {
file { "/etc/hosts":
owner => root,
group => root,
mode => 775,
content => template("wso2base/hosts.erb"),
}
}
|