From commits-return-4045-archive-asf-public=cust-asf.ponee.io@bigtop.apache.org Wed Jul 4 18:10:15 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 0B5B1180608 for ; Wed, 4 Jul 2018 18:10:14 +0200 (CEST) Received: (qmail 19108 invoked by uid 500); 4 Jul 2018 16:10:14 -0000 Mailing-List: contact commits-help@bigtop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bigtop-dev@bigtop.apache.org Delivered-To: mailing list commits@bigtop.apache.org Received: (qmail 19099 invoked by uid 99); 4 Jul 2018 16:10:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jul 2018 16:10:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 851F0DFC42; Wed, 4 Jul 2018 16:10:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: evansye@apache.org To: commits@bigtop.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: bigtop git commit: BIGTOP-3048: Revert "BIGTOP-3001. Change uid and gid for jenkins user in bigtop-toolchain" Date: Wed, 4 Jul 2018 16:10:13 +0000 (UTC) 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 Authored: Tue Jul 3 01:06:58 2018 +0800 Committer: Evans Ye 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":