Repository: bigtop Updated Branches: refs/heads/master 9b9304abd -> 7b37d45cb
BIGTOP-3048: Revert "BIGTOP-3001. Change uid and gid for jenkins user in bigtop-toolchain" This reverts commit 6781b266decf905c1229bf36a36af14dc988e31c. Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/7b37d45c Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/7b37d45c Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/7b37d45c Branch: refs/heads/master Commit: 7b37d45cbd038a027dc18863986df8971cb375e4 Parents: 9b9304a Author: Evans Ye <[email protected]> Authored: Tue Jul 3 01:06:58 2018 +0800 Committer: Evans Ye <[email protected]> Committed: Tue Jul 3 01:06:58 2018 +0800 ---------------------------------------------------------------------- bigtop_toolchain/manifests/user.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/7b37d45c/bigtop_toolchain/manifests/user.pp ---------------------------------------------------------------------- diff --git a/bigtop_toolchain/manifests/user.pp b/bigtop_toolchain/manifests/user.pp index 543fc56..901483e 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 => 500, + uid => 1000, gid => 'jenkins', require => Group['jenkins'], } group { 'jenkins': ensure => present, - gid => 500, + gid => 1000, } file {"/var/lib/jenkins/.m2":
