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 <[email protected]> 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 <[email protected]> Authored: Tue Feb 27 19:01:29 2018 +0900 Committer: Jun He <[email protected]> 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":
