You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the default rundeck user and group are created as non-system. Since these are meant to only run the rundeck service, they probably need to be declared as system account/group.
This could be done easily in the rundeck::install class:
if $manage_group {
group { $group:
ensure => present,
gid => $group_id,
+ system => true,
}
if $group != 'rundeck' {
group { 'rundeck':
ensure => absent,
}
}
}
if $manage_user {
user { $user:
ensure => present,
groups => [$group],
uid => $user_id,
gid => $group_id,
+ system => true,
before => File['/var/rundeck'],
}
if $user != 'rundeck' {
user { 'rundeck':
ensure => absent,
}
}
}
Affected Puppet, Ruby, OS and module versions/distributions
Currently, the default rundeck user and group are created as non-system. Since these are meant to only run the rundeck service, they probably need to be declared as system account/group.
This could be done easily in the rundeck::install class:
Affected Puppet, Ruby, OS and module versions/distributions
The text was updated successfully, but these errors were encountered: