You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by ju...@apache.org on 2018/02/28 01:37:41 UTC

bigtop git commit: BIGTOP-3001. Change uid and gid for jenkins user in bigtop-toolchain

Repository: bigtop
Updated Branches:
  refs/heads/master fdd4715f9 -> 6781b266d


BIGTOP-3001. Change uid and gid for jenkins user in bigtop-toolchain

This closes #343

Signed-off-by: Jun He <ju...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/6781b266
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/6781b266
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/6781b266

Branch: refs/heads/master
Commit: 6781b266decf905c1229bf36a36af14dc988e31c
Parents: fdd4715
Author: Akira Ajisaka <aa...@apache.org>
Authored: Tue Feb 27 19:01:29 2018 +0900
Committer: Jun He <ju...@apache.org>
Committed: Wed Feb 28 09:36:39 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/6781b266/bigtop_toolchain/manifests/user.pp
----------------------------------------------------------------------
diff --git a/bigtop_toolchain/manifests/user.pp b/bigtop_toolchain/manifests/user.pp
index 901483e..543fc56 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        => 500,
     gid        => 'jenkins',
     require    => Group['jenkins'],
   }
 
   group { 'jenkins':
     ensure => present,
-    gid    => 1000,
+    gid    => 500,
   }
 
   file {"/var/lib/jenkins/.m2":