Puppet Class: openstack::cinder::user
- Defined in:
- modules/openstack/manifests/cinder/user.pp
Overview
1 2 3 4 5 6 7 8 9 |
# File 'modules/openstack/manifests/cinder/user.pp', line 1
class openstack::cinder::user (
) {
# The cinder packages create this user, but with a weird, non-system ID.
# Instead, create the user ahead of time with a proper uid.
systemd::sysuser { 'cinder':
description => 'cinder system user',
}
}
|