similar to: Problem in Setting User Password

Displaying 20 results from an estimated 300 matches similar to: "Problem in Setting User Password"

2011 Sep 24
0
centos puppet user resource type - provider useradd does not support features manages_passwords
Hello, I have a CentOS 6.0 Virtualbox VM to package as a Vagrant box for testing Puppet manifests. The problem i''m having is with the user resource type not working with CentOS. I keep having an error message when setting the password for a user. Provider useradd does not support features manages_passwords; not managing attribute password I have both ruby-shadow and shadow-utils
2007 May 14
3
invalid parameter password for type user
[root]# /etc/init.d/puppet once -v {irrelevant output skipped} err: Could not retrieve configuration: Invalid parameter ''"password"'' for type ''user'' at /etc/puppet/manifests/classes/serverAdminAuth.pp:42 puppet-0.22.4-1.el5.rf (rpm) RHEL 5 i386 # snippet from serverAdminAuth.pp User { ensure => present,
2012 Nov 01
0
Issue with user password again
When I run puppet I see: "Provider useradd does not support features manages_passwords; not managing attribute password" [root@hostname local]# yum list installed | grep ruby-shadow ruby-shadow.x86_64 1.4.1-13.el6 @epel [root@hostname local]# ruby -rpuppet -e ''puts Puppet.features.libshadow?'' true [root@hostname local]#
2019 Jan 21
3
Cannot start a secondary Xserver with resolution 6480x3840
Hi, In my workflow I am using several separate xservers. One for work, another for research and so on. Each of them has a separate user account, and they all belong to the same (main) group called janek. I've been using nvidia for years, but about 2 years ago some super annoying bug appeared in nvidia, namely that switching between virtual terminals sporadically causes nvidia_modeset to
2010 Mar 03
6
File paths must be fully qualified
I was using Puppet 0.24.8 and now upgrade the puppet server and client both to 0.25.4 (on 1 machine i.e. server and client), but i am facing some problems. While testing, some of the configs which were/are running fine on older version generates error here; for instance, i have defined the FileSource path in ''/etc/puppet/fileserver.conf'' [myFileSrc] path
2010 Feb 24
1
Puppet 0.25.* SLES 11 Package
Hello members, We are using Puppet-Server 0.24.8 with Factor (1.5.2-1.20) and Puppet 0.24.5 (for client nodes) on our SuSE Machines and its working fine. We are now planning to upgrade to latest stable release 0.25.* for server (with factor) and client-nodes. We just like to enquire you if there is a package/rpm available for SLES 11? If yes, please share with us? Thanks -- M. Haris
2013 Nov 26
9
puppet won't change user's password
Hi! I''m trying to set password for a user. I do the following: user { "username": password => ''*'', } And when I run puppet agent nothing happens. The password remains the same. But if I create a new user which doesn''t exist yet, the password is set without any problems. Is this a normal behaviour of ''user'' type? --
2007 May 20
3
ruby-shadow problems for 0.22.4 on Debian/Ubuntu AMD64
I thought I''d put this out there for anyone to save anyone who''s running 0.22.4 on AMD64 hosts a whole world of hurt. Basically, the libshadow-ruby1.8 package that Puppet (as of 0.22.4) relies on is broken for AMD64 in both Debian (Sarge+) and Ubuntu (all releases). The problem is basically just some non-portable code. I''ve reported the bug into Debian with a patch, so
2011 Sep 24
6
run puppet service type with specific user
Hi, is it possible to use the service resource type with a specific user ? So that the service is started with that given user instead of the puppet user starting it... Thanks. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/u6nkVpFJ_kcJ. To post
2009 Jul 13
7
puppetd no-daemonize
So I have been trying to run puppet once in my kickstart %post scripts but every time it detaches and daemonizes even though I have explicitly stated otherwise. Am I missing something? # rpm -q puppet puppet-0.24.8-1 # /usr/sbin/puppetd --onetime --no-daemonize --verbose --debug debug: Creating default schedules debug: Failed to load library ''shadow'' for feature
2009 Aug 16
3
userdel without -r switch
Hi how do I tell with user type to use userdel with -r short of using exec type? i have a user account called `foo'' so i created a test puppet file local to the system called test.pp # cat test.pp user {"foo": ensure => absent, managehome => true, } when I apply it on solaris or linux the userdel does not use the `-r'' switch
2007 Dec 14
12
Manual package installation
Hello, I use puppet with RHEL and there are some packages that aren''t in up2date/yum repositories. I need a way to get these specific RPMs installed. There''s a blog posting that describes an almost-perfect way to do it: http://www.raskas.be/blog/2007/09/10/managing-user-passwords-with-puppet-on-centos/ The only problem with his example is that the RPM will always in the /tmp
2011 Jan 12
1
change from notrun to 0 failed: returned 1 instead of 0
# cat iddmi.pp class iddmi { # define pkg variable $pkg = $hardwareisa ? { "sparc" => "Iddmi_SunOS_sparc.pkg", "i386" => "Iddmi_SunOS_i386.pkg", default => undef, } $ftpsystems = "ftp.example.net/download" # define path deafult for exec Exec { path =>
2007 Dec 17
5
question about 0.24.0
I see in the changelog that: You now must specify an environment and you are required to specify the valid environments for your site. (#911) Does this mean that the puppetmaster has to be updated before clients work correctly? I ask because I''m testing out a client upgrade to 0.24.0 (server is still 0.23.2) and this is what I''m seeing: [~]% sudo /foo/bin/puppetd
1998 May 02
1
Shadow and OpenLinux
Hi all: I'm running Caldera OpenLinux with kernel 2.0.29, shadow password and quotas. The shadow kit is 980403 and is working fine. Well, when I try to compile I got this output : ------------------------- Begin Compile output ------------------------ Using CFLAGS = -O -DSMBLOGFILE="/usr/local/samba/var/log.smb" -DNMBLOGFILE="/usr /local/samba/var/log.nmb"
2009 Aug 27
13
User's and managing expired passwords
We have a policy that requires all user passwords to expire after 90 days. We also use puppet for managing all users on our machines. Our hope was, when our passwords expire, we could update the puppet manifest which would propogate to all our servers, thus updating all our passwords. The problem is, the User type (w/ manage_passwords enabled and ruby- shadow installed) will only set the
2008 Jun 06
8
useradd provider not working?
I have this config: # BL00070 - Disable NFS service {["nfs","nfslock","netfs","portmap"]: ensure => stopped, enable => false, } user {"rpc": ensure => absent, provider => "useradd" } user {"rpcuser": ensure => absent, provider => "useradd" } file
2019 Jan 21
0
Cannot start a secondary Xserver with resolution 6480x3840
Hi Janek, A few things... First off, you're not using the nouveau ddx, you're using the modesetting ddx. This isn't a problem in itself, but if you're going to report bugs, you should file them against the proper component. Secondly, I'm a bit unclear as to what your setup is. A single X server takes over a whole GPU. Recently "leasing" has been introduced which
2001 Aug 13
5
rsync ipv6 patch merge?
On 13 Aug 2001, "William F. Maton" <wmaton@ryouko.dgim.crc.ca> wrote: > On 13 Aug 2001, Heikki Vatiainen wrote: > > > The rsync daemon we use is plain 2.4.6 patched with KAME rsync patch > > rsync-246-v6-20000907.diff.gz [1]. It looks like there is a good > > possibility to get IPv6 merged in, since just today a rsync developer > > was asking if
2001 Feb 16
1
error_2_can't_find_apps
Hello, I tried lunch something but the anwer was "can't find apps" (I used absolute path too) [serge@rex wineserver-rex]$ wine /windows/ProgramFiles/Office/winword.exe Invoking /opt/wine/bin/wine.bin /windows/ProgramFiles/Office/winword.exe ... Wine failed with return code 2 /usr/bin/wine: line 516: 1046 Compl?t? tail -f $log_name Deleting /tmp/wine.log.Vv4t6C