This is an automated email from the ASF dual-hosted git repository.
iwasakims pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/bigtop.git
The following commit(s) were added to refs/heads/branch-3.4 by this push:
new d6ba19abb BIGTOP-4373. jenkins user/group creation fails due to
conflict of uid/gid on Ubuntu 24.04. (#1333)
d6ba19abb is described below
commit d6ba19abbda5dee66ccd138ddd61c76b2c374846
Author: Masatake Iwasaki <[email protected]>
AuthorDate: Mon Mar 3 17:16:03 2025 +0900
BIGTOP-4373. jenkins user/group creation fails due to conflict of uid/gid
on Ubuntu 24.04. (#1333)
(cherry picked from commit 5be26e2af3a21b446b0a4447a65f199e153eb831)
---
bigtop_toolchain/manifests/user.pp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bigtop_toolchain/manifests/user.pp
b/bigtop_toolchain/manifests/user.pp
index 901483efe..3f5259a07 100644
--- a/bigtop_toolchain/manifests/user.pp
+++ b/bigtop_toolchain/manifests/user.pp
@@ -19,14 +19,14 @@ class bigtop_toolchain::user {
ensure => present,
home => '/var/lib/jenkins',
managehome => true,
- uid => 1000,
+ uid => 2000,
gid => 'jenkins',
require => Group['jenkins'],
}
group { 'jenkins':
ensure => present,
- gid => 1000,
+ gid => 2000,
}
file {"/var/lib/jenkins/.m2":