adds firewall control

This commit is contained in:
Arne Teuke
2019-04-10 20:23:41 +02:00
parent 6edea42cdf
commit de7c639cd6
2 changed files with 7 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ gem 'rake'
gem 'semantic_puppet' gem 'semantic_puppet'
gem 'rgen' gem 'rgen'
gem 'public_suffix', '<= 2.0.5' gem 'public_suffix', '<= 2.0.5'
gem 'parallel', '<= 1.13.0'
# rspec must be v2 for ruby 1.8.7 # rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9' if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'

View File

@@ -21,5 +21,10 @@
# @summary Class initializes the cd_haproxy module. # @summary Class initializes the cd_haproxy module.
############################################################################## ##############################################################################
class cd_haproxy { class cd_haproxy {
include cd_haproxy::params include cd_haproxy::params
resources { 'firewall':
purge => true
}
} }