Defined Type: squid::httpaccess
- Defined in:
- manifests/httpaccess.pp
Overview
http_access allow RHEL-UpdateServers http_access allow|deny [!]aclname ..
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/httpaccess.pp', line 3
define squid::httpaccess(
$acls = [ $name ],
$action = 'allow',
$description = undef,
$order = '0',
) {
concat::fragment{ "${squid::params::config_file} httpaccess ${aclname}/${name}":
target => $squid::params::config_file,
order => "40${order}",
content => template("${module_name}/http_access.erb"),
}
}
|