>From reading your comments I think maybe you are misunderstanding what the
defined() function does.   This function is run *server side* during the
compilation of the catalog and is saying "If this Puppet resource exists in
the catalog, yet".  It is not saying "If this resource is configured on the
target system".

The "yet" above is also important, depending on the ordering of your
includes, if the parser is evaluating this block before it evaluates
wherever you declare the openssh-server package resource, then at this
point it is not defined.  It may well be getting declared after this point.

Given the above, what are you trying to achieve?  Are you trying to manage
the file resource after the package resource, or are you saying you only
want to manage the file if the package exists on the target system?

If the former, you should just *require* the Puppet resource in your
manifest;

file { "/etc/fail2ban/filter.d/sshd-dos.local":
      mode => "0644",
      owner => 'root',
      group => 'root',
      source =>
'puppet:///modules/fail2ban/etc/fail2ban/filter.d/sshd-dos.local',*
  require => Package[$sshdPackage],
*}


If that's not what you are trying to do, please elaborate.....

Regards
Craig



On Sun, Jun 12, 2016 at 3:23 PM, Helmut Schneider <jumpe...@gmx.de> wrote:

> Hi,
>
> I want to copy files if a package is installed. What works fine with
> the packages 'postfix', 'fail2ban' and 'apache2' does not with
> 'openssh-server.
>
> class fail2ban {
>   $postfixPackage = $::operatingsystem ? {
>     /(?i:Ubuntu|Debian|Mint)/ => 'postfix',
>     default                   => 'undef',
>   }
>   $sshdPackage = $::operatingsystem ? {
>     /(?i:Ubuntu|Debian|Mint)/ => 'openssh-server',
>     default                   => 'undef',
>   }
>
>   if ! defined (Package["$package"]) {
>     package { "$package":
>       ensure => installed,
>     }
>   }
>
>   if defined (Package["$postfixPackage"]) {
>     file { "/etc/fail2ban/filter.d/postfix-amavis.local":
>       mode => "0644",
>       owner => 'root',
>       group => 'root',
>       source =>
> 'puppet:///modules/fail2ban/etc/fail2ban/filter.d/postfix-amavis.local',
>     }
>   }
>   if defined (Package["$sshdPackage"]) {
>     file { "/etc/fail2ban/filter.d/sshd-dos.local":
>       mode => "0644",
>       owner => 'root',
>       group => 'root',
>       source =>
> 'puppet:///modules/fail2ban/etc/fail2ban/filter.d/sshd-dos.local',
>     }
>   }
> }
>
> $ rm /etc/fail2ban/filter.d/postfix-amavis.local
> /etc/fail2ban/filter.d/sshd-dos.local^C
> $ sudo rm /etc/fail2ban/filter.d/postfix-amavis.local
> /etc/fail2ban/filter.d/sshd-dos.local
> $ sudo puppet agent -t -d | grep -Ei
> '(postfix|openssh-server|postfix-amavis.local|sshd-dos.local)'
> [...]
> Debug: /Package[postfix]: Provider apt does not support features
> virtual_packages; not managing attribute allow_virtual
> Debug: /Package[openssh-server]: Provider apt does not support features
> virtual_packages; not managing attribute allow_virtual
> [...]
> Notice:
> /Stage[main]/Fail2ban/File[/etc/fail2ban/filter.d/postfix-amavis.local]/
> ensure: defined content as '{md5}c5def71abe5f682c2beb896fd5e30e10'
> Debug:
> /Stage[main]/Fail2ban/File[/etc/fail2ban/filter.d/postfix-amavis.local]:
> The container Class[Fail2ban] will propagate my refresh event
>
> So /etc/fail2ban/filter.d/sshd-dos.local is not copied. When
> uncommenting the if-clause 'if defined (Package["$sshdPackage"])' the
> file gets copied:
>
> $ sudo puppet agent -t -d | grep -i 'sshd-dos.local'
> Debug:
> /Stage[main]/Fail2ban/File[/etc/fail2ban/filter.d/sshd-dos.local]:
> Autorequiring File[/etc/fail2ban/filter.d/]
> Notice:
> /Stage[main]/Fail2ban/File[/etc/fail2ban/filter.d/sshd-dos.local]/ensure
> : defined content as '{md5}3d993678f322e5cb6335addaaa40512e'
> Debug:
> /Stage[main]/Fail2ban/File[/etc/fail2ban/filter.d/sshd-dos.local]: The
> container Class[Fail2ban] will propagate my refresh event
>
> Am I missing the obvious?
>
> $ puppet -V
> 3.8.7
> $ lsb_release -d
> Description:    Ubuntu 14.04.4 LTS
>
> Thank you
>
> --
> 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/xn0k75zp1zhqvbs000%40news.gmane.org
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Enviatics     |      Automation and Configuration Management
Puppet Labs Service Delivery Partner & Certified Consultant
http://www.enviatics.com | @Enviatics | cr...@enviatics.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/CACxdKhGFY3yUuKzO3WrM%3DaUbep0DuPA98i%2B%3D%3DSO6yQ2pm3gdCQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to