Greg Haase <gha...@syntheticgenomics.com> writes:

> I am exporting my resources to the database. I can verify that this is
> occurring.  Yet I am not getting all of the the
>
> Nagios_host <<|target ==nagios_hosts.${fqdn}.cfg|>>
>
> files written to my nagios server and I am interested in finding out how to
> trace down this functionality of the collection and exportation of resources
> so I can properly identify how/why it is not working in all of the cases.
>
> I guess if someone could point me to a basic model of this exportation and
> collection process I could work from there.  Is there any detailed writing
> about this?

Not other than what folks have pointed to already, I think.  I use this:

,----[ client.pp ]
|     @@file { "/etc/backuppc/${fqdn}.pl":
|       owner   => 'backuppc', group => 'www-data', mode => 0444,
|       content => template('backuppc/backuppc-client-config.pl.erb'),
|       tag     => "backuppc-client-${backuppc_server}"
|     }
`----

,----[ server.pp ]
|   File <<| tag == "backuppc-client-${fqdn}" |>> {
|     require => [Package["backuppc"], File["/etc/backuppc/SDBackupPC.pm"]],
|     notify  => Service["backuppc"],
|   }
`----

...which works fine for our infrastructure.  It looks pretty much identical to
your code, but just in case. :)

        Daniel
-- 
✣ Daniel Pittman            ✉ dan...@rimspace.net            ☎ +61 401 155 707
               ♽ made with 100 percent post-consumer electrons

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to