Re: [EXTERNAL] [Puppet Users] Re: Ruby gem-ruby-shadow RPM on RHEL 8 ?

2022-03-21 Thread 'White, Daniel E. (GSFC-770.0)[NICS]' via Puppet Users
Ny use case is https://puppet.com/docs/puppet/7/types/user.html#user-provider-useradd From: Puppet-Users Mailing List on behalf of Corey Osman Reply-To: Puppet-Users Mailing List Date: Friday, March 18, 2022 at 18:20 To: Puppet-Users Mailing List Subject: [EXTERNAL] [Puppet Users] Re: Ruby

Re: [EXTERNAL] [Puppet Users] Re: Ruby gem-ruby-shadow RPM on RHEL 8 ?

2022-03-21 Thread Martin Alfke
Shadow is part of the ruby installation inside the puppet agent. You can verify functionality: /opt/puppetlabs/puppet/bin/irb irb(main):001:0> require 'shadow' => true irb(main):002:0> exit root@node01:~# If you receive the “true” output after you run require ’shadow’ all is set and you can dire

Re: [Puppet Users] Re: Ruby gem-ruby-shadow RPM on RHEL 8 ?

2022-03-21 Thread 'White, Daniel E. (GSFC-770.0)[NICS]' via Puppet Users
The command “puppetserver gem list” does not list “ruby-shadow” How do I get a list of agent side gems, please ? __ Daniel E. White daniel.e.wh...@nasa.gov NASCOM Linux Engi

Re: [Puppet Users] Ruby gem-ruby-shadow RPM on RHEL 8 ?

2022-03-21 Thread Martin Alfke
For getting a list of Puppet Agent gems you can run /opt/puppetlabs/puppet/bin/gem list But: this command will only show additional gems! It will not show gems bundled with Ruby itself! The shadow gem is part of the ruby implementation. find /opt/puppetlabs/puppet/lib/ -type f -name *shadow* /o