content => template('ferm/ferm.conf.erb'),
notify => Service['ferm'],
}
+ file { '/etc/ferm/conf.d/00-init.conf':
+ content => template('ferm/00-init.conf.erb'),
+ notify => Service['ferm'],
+ }
file { '/etc/ferm/conf.d/me.conf':
content => template('ferm/me.conf.erb'),
notify => Service['ferm'],
ssh4allowed.length == 0 and ssh4allowed << '0.0.0.0/0'
ssh6allowed.length == 0 and ssh6allowed << '::/0'
-out << "@def $SSH_SOURCES = (#{ssh4allowed.join(' ')});"
-out << "@def $SSH_V6_SOURCES = (#{ssh6allowed.join(' ')});"
+out << "@def $SSH_SOURCES = ( $SSH_SOURCES #{ssh4allowed.join(' ')});"
+out << "@def $SSH_V6_SOURCES = ( $SSH_V6_SOURCES #{ssh6allowed.join(' ')});"