On Tuesday, January 5, 2016 at 5:51:04 AM UTC-6, linux....@gmail.com wrote:
>
> Hi,
>
> I am writing a module to place a file into a directory only if the 
> directory exist. If the directory or source does not exist it should simply 
> ignore without throwing an error message. However I get an error saying 
> that the file could not be created. Can anyone please help me to find out 
> what is wrong with the below code?
>
> err: /File[/home/user/.bashrc]/ensure: change from absent to file failed: 
> Could not set 'file on ensure: cannot generate tempfile 
>  
> define test::user (username = $user){
>
> file { "/home/${name}/.bashrc":
>        ensure  => file,
>        source  => ["puppet:///modules/test/${fqdn}_${$user}_bashrc" , 
> 'puppet:///modules/test/bashrc-default'],
>        before  =>  Exec ["${user}_check"],
> }
>
> exec {"${user}_check":
>       command => '/bin/false',
>       provider => shell,
>       unless => "/usr/bin/test -d /home/$name",
>     }
>
>

You are specifying that the .bashrc file should be managed *before* the 
directory check.  This is exactly opposite to what you want.  Switching to 
the 'require' metaparameter will give you the evaluation order you want.

With that said, this is probably a poor approach overall.  If you are 
managing user accounts and the contents of their home directories then 
almost certainly you should manage their home directories as well.  If the 
home directory were under management then you could either ensure it is 
present, in which case you wouldn't need a test, or ensure it absent or 
leave it unmanaged, in which case you could and should avoid attempting to 
manage any contents.

If you insist on avoiding managing home directories themselves, and yet 
managing their contents then Puppet's primary mechanism for conditional 
action based on on machine state revolves around facts.  You can use facts 
for this even with only string facts.  For example, it would be pretty easy 
to write a custom fact that provided, say, a colon-delimited list of all 
the subdirectories of /home, which your manifest code could then examine to 
determine whether a particular home directory was present.


John

-- 
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/3cdc5e31-6b2f-4d97-91ae-4a3648d1c3ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to