Puppet Class: tomcat::user
- Defined in:
- manifests/user.pp
Overview
1 2 3 4 5 6 7 8 9 10 |
# File 'manifests/user.pp', line 1
class tomcat::user {
user {'tomcat':
ensure => present,
uid => $::tomcat::tomcat_uid,
gid => $::tomcat::tomcat_gid,
shell => $::tomcat::tomcat_shell,
system => true,
home => $::tomcat::instance_basedir,
}
}
|