## 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 { require confdroid_gitea::main::install user { $ga_user: ensure => 'present', managehome => true, shell => '/bin/false', system => true, } } }