Ver código fonte

test(config): fix for Amazon Linux 2 & Oracle Linux 7/8

tags/v2.6.0
Imran Iqbal 3 anos atrás
pai
commit
ab39c8f7c3
Nenhuma conta vinculada ao e-mail do autor do commit
2 arquivos alterados com 5 adições e 4 exclusões
  1. +4
    -4
      test/integration/default/controls/config.rb
  2. +1
    -0
      test/integration/default/controls/service.rb

+ 4
- 4
test/integration/default/controls/config.rb Ver arquivo

@@ -3,12 +3,12 @@
server_available = '/etc/nginx/sites-available'
server_enabled = '/etc/nginx/sites-enabled'

# Override by OS
case os[:name]
when 'redhat', 'centos', 'fedora'
# Override by platform family
case platform[:family]
when 'redhat','fedora'
server_available = '/etc/nginx/conf.d'
server_enabled = '/etc/nginx/conf.d'
when 'opensuse'
when 'suse'
server_available = '/etc/nginx/vhosts.d'
server_enabled = '/etc/nginx/vhosts.d'
end

+ 1
- 0
test/integration/default/controls/service.rb Ver arquivo

@@ -2,6 +2,7 @@ control 'Nginx service' do
title 'should be running and enabled'

describe service('nginx') do
it { should be_installed }
it { should be_enabled }
it { should be_running }
end

Carregando…
Cancelar
Salvar