Puppet Class: webperf
- Defined in:
- modules/webperf/manifests/init.pp
Overview
SPDX-License-Identifier: Apache-2.0
Class: webperf
This base class provides a user, group, and working directory for webperf processes.
7 8 9 10 11 12 13 |
# File 'modules/webperf/manifests/init.pp', line 7
class webperf {
systemd::sysuser { 'webperf': }
file { '/srv/webperf':
ensure => directory,
}
}
|