summaryrefslogtreecommitdiffstats
path: root/modules/sshd/manifests/configsection.pp
blob: 4376d1e37cfc8540d48d47c3544ae2214c9e846f (plain) (blame)
1
2
3
4
5
6
define sshd::configsection($source) {
  file { "/etc/ssh/sshd_config.d/$name":
    source => $source,
    require => File['/etc/ssh/sshd_config.d'];
  }
}