[Puppet Users] Re: updating user passwords with puppet

2009-04-03 Thread Sebastian Krueger
Blowfish is the standard for openSUSE since 9.3. And it's the standard since SLES 9 as well. It's way stronger than md5. On Fri, Apr 3, 2009 at 7:41 PM, Robin Lee Powell < rlpow...@digitalkingdom.org> wrote: > > On Fri, Apr 03, 2009 at 03:49:18PM +1300, Sebastian Krue

[Puppet Users] Re: updating user passwords with puppet

2009-04-02 Thread Sebastian Krueger
s, but not blowfish passwords. If anyone knows how to generate blowfish passwords, I'd be keen to know how they do it. Kind regards, Sebastian. On Fri, Apr 3, 2009 at 10:33 PM, wrote: > > On Fri, 03 Apr 2009 02:49:18 -0000, Sebastian Krueger > wrote: > Hi Sebastian, its my ty

[Puppet Users] updating user passwords with puppet

2009-04-02 Thread Sebastian Krueger
Hi guys, I'm trying to update passwords in /etc/shadow with puppet. I've installed the ruby lib shadow library and am using the following sample puppet syntax: user { "seb": gid=> "30", ensure => present, membership => inclusive, groups

[Puppet Users] Re: problem changing group membership for linux users

2009-03-03 Thread Sebastian Krueger
bump On Mon, Mar 2, 2009 at 8:41 PM, Sebastian Krueger wrote: > How hard would it be to add a flag / option to reductivelabs projects > that use git, to tell git to use the http > method? > > So it would tell git to use http:// instead of git:// > > example: > git clone

[Puppet Users] Re: problem changing group membership for linux users

2009-03-01 Thread Sebastian Krueger
Would that be possible? Regards, Sebastian. On Mon, Mar 2, 2009 at 8:37 PM, Sebastian Krueger wrote: > it's definitely version 0.24.7. > > At least that's the only version I've ever downloaded. I'm running > SLES 10.2. Not sure if that makes any difference compare

[Puppet Users] Re: problem changing group membership for linux users

2009-03-01 Thread Sebastian Krueger
doesn't support "CONNECT" requests. As I'm still relatively new to Ruby, can someone point me to the source file and I'll compare the code manually? Cheers, Sebastian. On Tue, Mar 3, 2009 at 12:30 AM, wrote: > > On Mon, 02 Mar 2009 05:50:42 -, Sebastian

[Puppet Users] Re: problem changing group membership for linux users

2009-03-01 Thread Sebastian Krueger
clone git://reductivelabs.com/puppet And then it just sits there and times out eventually. Do any of you guys use git through a proxy and could share their configuration? Regards, Sebastian. On Mon, Mar 2, 2009 at 6:50 PM, Sebastian Krueger wrote: > > Hi Nick, > > I've added in the m

[Puppet Users] Re: problem changing group membership for linux users

2009-03-01 Thread Sebastian Krueger
Hi Nick, I've added in the membership => inclusive part but it's still trying to reassign the groupmembership all the time. Regards, Sebastian. On Mon, Mar 2, 2009 at 10:39 PM, wrote: > > On Mon, 02 Mar 2009 03:46:55 -, Sebastian Krueger > wrote: > > > Hi

[Puppet Users] Re: problem changing group membership for linux users

2009-03-01 Thread Sebastian Krueger
code repository? Thanks, Sebastian. On Mon, Mar 2, 2009 at 5:34 PM, James Turnbull wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Sebastian Krueger wrote: > > > > Why does it show 'users,users' to 'users'? Is this a bug with the > gr

[Puppet Users] problem changing group membership for linux users

2009-03-01 Thread Sebastian Krueger
Hi list, I want the ensure that the eaiadmin user is always a member of the users group. I use the following configuration: class baseusers { include virt_groups, virt_users realize( Group["eaiadmin"], Group["users"] ) realize( User["eaiadmin"] ) }