Puppet Class: confdroid_gitea::main::user
- Inherits:
- confdroid_gitea::params
- Defined in:
- manifests/main/user.pp
Summary
manages the user for the confdroid_gitea Puppet module.Overview
confdroid_gitea::main::user.pp Module name: confdroid_gitea Author: 12ww1160 (12ww1160@confdroid.com)
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/main/user.pp', line 6
class confdroid_gitea::main::user (
) inherits confdroid_gitea::params {
if $ga_host_fqdn == $fqdn {
require confdroid_gitea::main::install
user { $ga_user:
ensure => 'present',
managehome => true,
shell => '/bin/false',
system => true,
}
}
}
|