Puppet Class: profile::zuul::user

Defined in:
modules/profile/manifests/zuul/user.pp

Overview

SPDX-License-Identifier: Apache-2.0 set up system user and group for new zuul



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'modules/profile/manifests/zuul/user.pp', line 3

class profile::zuul::user {

    group { 'zuul':
        ensure => present,
        name   => 'zuul',
        system => true,
    }

    user { 'zuul':
        ensure  => present,
        system  => true,
        groups  => 'docker',
        require => [
            Group['zuul'],
        ],
    }
}