summaryrefslogtreecommitdiff
path: root/spec/defines/listen_spec.rb
diff options
context:
space:
mode:
authorGary Larizza <gary@puppetlabs.com>2012-10-12 15:17:48 -0700
committerGary Larizza <gary@puppetlabs.com>2012-10-12 15:17:48 -0700
commitfa67a136a0e2df377c2650cfd45f5941505401be (patch)
tree009fd499ea08576fcad96d47019ff0b432e7e630 /spec/defines/listen_spec.rb
parent3c5fefaf650776569d7ee6f842231f5709fac1d9 (diff)
parent57557202f5ccd16ccd276ce3997a3f8d370e8c60 (diff)
Merge pull request #17 from hunner/fix_order
Fix order
Diffstat (limited to 'spec/defines/listen_spec.rb')
-rw-r--r--spec/defines/listen_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/defines/listen_spec.rb b/spec/defines/listen_spec.rb
index 16a0cfa..fa54409 100644
--- a/spec/defines/listen_spec.rb
+++ b/spec/defines/listen_spec.rb
@@ -12,7 +12,7 @@ describe 'haproxy::listen' do
end
it { should contain_concat__fragment('croy_listen_block').with(
- 'order' => '20',
+ 'order' => '20-croy',
'target' => '/etc/haproxy/haproxy.cfg',
'content' => "\nlisten croy 1.1.1.1:18140\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"
) }
@@ -30,7 +30,7 @@ describe 'haproxy::listen' do
end
it { should contain_concat__fragment('apache_listen_block').with(
- 'order' => '20',
+ 'order' => '20-apache',
'target' => '/etc/haproxy/haproxy.cfg',
'content' => "\nlisten apache 23.23.23.23:80,23.23.23.23:443\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"
) }
@@ -45,7 +45,7 @@ describe 'haproxy::listen' do
end
it { should contain_concat__fragment('apache_listen_block').with(
- 'order' => '20',
+ 'order' => '20-apache',
'target' => '/etc/haproxy/haproxy.cfg',
'content' => "\nlisten apache 23.23.23.23:80,23.23.23.23:443\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"
) }