X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=modules%2Fssh%2Fmanifests%2Finit.pp;h=bd3600eeb740c8b0407a1e760d2c2fa32b495573;hb=6849c0d133f88df75366cf25a663e52409eac389;hp=43d89df0159c22a724965ce997b11fff2210174a;hpb=f7eae20be1b64c3688676bac3db082e43a0823cb;p=mirror%2Fdsa-puppet.git diff --git a/modules/ssh/manifests/init.pp b/modules/ssh/manifests/init.pp index 43d89df01..bd3600eeb 100644 --- a/modules/ssh/manifests/init.pp +++ b/modules/ssh/manifests/init.pp @@ -15,9 +15,11 @@ class ssh { } ferm::rule { 'dsa-ssh-sources': description => 'Allow SSH from DSA', + domain => '(ip ip6)', chain => 'ssh', rule => 'saddr ($SSH_SOURCES) ACCEPT' } + Ferm::Rule::Simple <<| tag == 'ssh::server::from::nagios' |>> file { '/etc/ssh/ssh_config': content => template('ssh/ssh_config.erb'), @@ -47,13 +49,13 @@ class ssh { } if (versioncmp($::lsbmajdistrelease, '8') >= 0) { - if ! $has_etc_ssh_ssh_host_ed25519_key { + if ! $facts['has_etc_ssh_ssh_host_ed25519_key'] { exec { 'create-ed25519-host-key': command => 'ssh-keygen -f /etc/ssh/ssh_host_ed25519_key -q -P "" -t ed25519', } } - if $systemd { + if $facts['systemd'] { package { [ 'libpam-systemd' ]: ensure => installed }