You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by co...@apache.org on 2015/12/27 06:27:31 UTC

[3/3] bigtop git commit: BIGTOP-2187. toolchain creates user with different ids on different systems

BIGTOP-2187. toolchain creates user with different ids on different systems


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

Branch: refs/heads/master
Commit: 5a9419b139cfec1b6660a6b488a2c4128e78cecb
Parents: a162776
Author: Konstantin Boudnik <co...@apache.org>
Authored: Wed Dec 23 12:03:08 2015 -0800
Committer: Konstantin Boudnik <co...@apache.org>
Committed: Sat Dec 26 21:26:48 2015 -0800

----------------------------------------------------------------------
 bigtop_toolchain/manifests/user.pp | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/5a9419b1/bigtop_toolchain/manifests/user.pp
----------------------------------------------------------------------
diff --git a/bigtop_toolchain/manifests/user.pp b/bigtop_toolchain/manifests/user.pp
index b6b7787..d231b27 100644
--- a/bigtop_toolchain/manifests/user.pp
+++ b/bigtop_toolchain/manifests/user.pp
@@ -19,12 +19,14 @@ class bigtop_toolchain::user {
     ensure => present,
     home => '/var/lib/jenkins',
     managehome => true,
+    uid        => 1000,
     gid        => 'jenkins',
     require    => Group['jenkins'],
   }
 
   group { 'jenkins':
     ensure => present,
+    gid    => 1000,
   }
 
   file {"/var/lib/jenkins/.m2":