spuder / puppet-gitlab

A puppet module to install gitlab 7
Apache License 2.0
36 stars 44 forks source link

service $mail_application shouldnt require Package['openssh-server'] #142

Closed timhughes closed 9 years ago

timhughes commented 9 years ago

It should require the package for the mail appplication

  package { $mail_application:
    ensure => latest,
  } 
  service { $mail_application:
    ensure  => running,
    require => Package['openssh-server'],
  }