18 lines
509 B
Puppet
18 lines
509 B
Puppet
## confdroid_gitea::main::user.pp
|
|
# Module name: confdroid_gitea
|
|
# Author: 12ww1160 (12ww1160@confdroid.com)
|
|
# @summary manages the user for the confdroid_gitea Puppet module.
|
|
##############################################################################
|
|
class confdroid_gitea::main::user (
|
|
|
|
) inherits confdroid_gitea::params {
|
|
if $ga_host_fqdn == $fqdn {
|
|
user { $ga_user:
|
|
ensure => 'present',
|
|
managehome => true,
|
|
shell => '/bin/false',
|
|
system => true,
|
|
}
|
|
}
|
|
}
|