adding template for testing

This commit is contained in:
Arne Teuke
2018-12-29 19:36:27 +01:00
parent 8cba64a35b
commit c594d0851b
2 changed files with 2 additions and 3 deletions

View File

@@ -26,7 +26,7 @@
define cd_haproxy::server::proxy ( define cd_haproxy::server::proxy (
$frontend_name = undef, $frontend_name = undef,
$frontend_order = undef, $frontend_order = '010',
) { ) {

View File

@@ -20,13 +20,12 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# @summary Define manages the proxies for cd_haproxy. # @summary Define manages the proxies for cd_haproxy.
############################################################################### ###############################################################################
class cd_haproxy::server::proxy_test.pp ( class cd_haproxy::server::proxy_test (
) inherits cd_haproxy::params { ) inherits cd_haproxy::params {
cd_haproxy::proxy { 'testing': cd_haproxy::proxy { 'testing':
frontend_name => 'test01', frontend_name => 'test01',
frontend_order => '001',
} }
} }