Am 05.01.2016 um 13:47 schrieb linux.shel...@gmail.com:

> Exactly, that is what I am trying to do. .bashrc should be created
> only if the user exist and it should not throw errors that the file
> could not be created for the users that does not exist.

You could setup a fact array (named "users") by providing a fact script
in your class (lib/facter/collect_users.rb) and then refering to it in
the code, like for example (Puppet 4):

$facts['users'].each |String $user| {
  file { "/home/${user}/.bashrc":
  ...
  }
}

In Puppet 3 you'd use a "define" instead of the loop.

HTH...

    Dirk
-- 

*Dirk Heinrichs*, Senior Systems Engineer, Engineering Solutions
*Recommind GmbH*, Von-Liebig-Straße 1, 53359 Rheinbach
*Tel*: +49 2226 1596666 (Ansage) 1149
*Email*: d...@recommind.com <mailto:d...@recommind.com>
*Skype*: dirk.heinrichs.recommind
www.recommind.com <http://www.recommind.com>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/568BBF56.6050205%40recommind.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to