Defined Type: dokuwiki::user
- Defined in:
- manifests/user.pp
Summary
Creates local user in the users.auth.php fileOverview
dokuwiki::user
Creates local user in the users.auth.php file
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'manifests/user.pp', line 22
define dokuwiki::user(
String $passwordhash = '',
String $real_name = '',
String $email = '',
Array $groups = [],
String $login = $name,
) {
concat::fragment { "dokuwiki_user_${login}":
target => 'dokuwiki-users.auth.php',
content => template('dokuwiki/user.erb'),
order => '10'
}
}
|