[Lsb-messages] /var/www/bzr/lsb/devel/puppet-lsb r206: Strip UIDs from users; on existing systems, they will likely conflict.

Jeff Licquia licquia at linuxfoundation.org
Wed Feb 29 17:33:13 UTC 2012


------------------------------------------------------------
revno: 206
committer: Jeff Licquia <licquia at linuxfoundation.org>
branch nick: puppet-lsb
timestamp: Wed 2012-02-29 12:33:13 -0500
message:
  Strip UIDs from users; on existing systems, they will likely conflict.
modified:
  modules/user/manifests/virtual.pp
-------------- next part --------------
=== modified file 'modules/user/manifests/virtual.pp'
--- a/modules/user/manifests/virtual.pp	2012-01-28 16:39:37 +0000
+++ b/modules/user/manifests/virtual.pp	2012-02-29 17:33:13 +0000
@@ -9,7 +9,6 @@
 
     @user { 'lfadmin':
         ensure      => present,
-        uid         => '1000',
         comment     => 'Linux Foundation IT',
         home        => '/home/lfadmin',
         shell       => '/bin/bash',
@@ -18,8 +17,7 @@
 
     @user { 'licquia':
         ensure      => present,
-        uid         => '1001',
-        gid         => '100',
+        gid         => 'users',
         comment     => 'Jeff Licquia',
         home        => '/home/licquia',
         shell       => '/bin/bash',
@@ -28,8 +26,7 @@
 
     @user { 'stewb':
         ensure      => present,
-        uid         => '1002',
-        gid         => '100',
+        gid         => 'users',
         comment     => 'Stew Benedict',
         home        => '/home/stewb',
         shell       => '/bin/bash',
@@ -38,8 +35,7 @@
 
     @user { 'mats':
         ensure      => present,
-        uid         => '1003',
-        gid         => '100',
+        gid         => 'users',
         comment     => 'Mats Wichmann',
         home        => '/home/mats',
         shell       => '/bin/bash',



More information about the lsb-messages mailing list