Displaying 1 result from an estimated 1 matches for "ssh_package_nam".
Did you mean:
  ssh_package_name
  
2013 Oct 24
2
SSH Module with multiple conditions
...configurations based on the contents of other files.
Here is my current init.pp I''ve come up with from the Pro Puppet book.  Is 
this a good start?  Or do I totally need to scrsp this and restart based on 
my criteria? 
class ssh::params {
  case $operatingsystem {
    freebsd: {
      $ssh_package_name = ''openssh''
      $ssh_service_config = ''/etc/ssh/sshd_config'' 
      $ssh_service_name = ''sshd'' 
    }
    /aix: {
      $ssh_package_name = ''openssh-server''
      $ssh_service_config = ''/etc/ssh/sshd_config''...