I was wondering if it is possible to do a conditional inside a selector to test for the existence of a file.
I currently have something like this (just an excerpt): file { smbshares: path => "/etc/samba/shares.conf", source => $hostname ? { nodename1 => "puppet:///samba/shares/nodename1.conf", nodename2 => "puppet:///samba/shares/nodename2.conf", default => "puppet:///samba/shares/default.conf", }; } The smb.conf does an include on /etc/samba/shares.conf so in order to add or create custom shares I drop a file in modules/samba/files/shares named after the hostname of the target machine and then place the corresonding line in the file block above. It works pretty well, but since the file is named after the hostname I was thinking it would be pretty slick if that part were a little more dynamic. Logically speaking it would look something like this: source => $hostname ? { [ -f puppet:///samba/shares/$hostname.conf ] => "puppet:///samba/shares/$hostname.conf", default => "puppet:///samba/shares/default.conf", }; I just can't quite seem to come up with what the syntax would need to look. The shell syntax above is just to convey the logic I'm looking for. Any ideas, or is there a better way to do this? Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---