Defined Type: dokuwiki::acl
- Defined in:
- manifests/acl.pp
Summary
Create ACL rules in the acl.auth.php configuration fileOverview
dokuwiki::acl
Create ACL rules in the acl.auth.php configuration file
19 20 21 22 23 24 25 26 27 28 29 |
# File 'manifests/acl.pp', line 19
define dokuwiki::acl (
String $user,
String $group,
Numeric $permission,
) {
concat::fragment { "dokuwiki_acl_${name}":
target => "${dokuwiki::install_path}/dokuwiki/conf/acl.auth.php",
content => template('dokuwiki/acl.erb'),
order => '10'
}
}
|