Thank you for the response.I am using puppet 2.7 and for me puppet is able
to place the file which I am asking to. But it gives a lot of errors for
the users which do not exist as it will not be able to place the file for
that user and the puppet error log is filled up due to this. Hence, I want
some way to suppress that error for the users that does not exist on the
server. Also, I am not familer with writing ruby code for this requirement
as I am passing the defined variable for user name.
On 5 Jan 2016 18:34, "Dirk Heinrichs" <dirk.heinri...@recommind.com> wrote:

> 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
> *Skype*: dirk.heinrichs.recommind
> 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
> <https://groups.google.com/d/msgid/puppet-users/568BBF56.6050205%40recommind.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAPLcSABYAOFR0-efdGGdTX49W17yJDYJx48biDQO88Yhngba7Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to