From 1a727c8a2523e9feae539b6b2d666a37ab6f1bd9 Mon Sep 17 00:00:00 2001 From: Gary Larizza Date: Fri, 17 Jun 2011 18:00:43 -0700 Subject: [PATCH] Fix GID Commit fixes the incorrect GID for the puppet-dashboard user. --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 09cfa13..9426eaa 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -134,7 +134,7 @@ class dashboard ( user { 'puppet-dashboard': uid => '1001', comment => 'Puppet Dashboard', - gid => '102', + gid => '1002', ensure => 'present', shell => '/sbin/nologin', }