소스 검색

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

tags/v2.6.0
Imran Iqbal 3 년 전
부모
커밋
ab39c8f7c3
No account linked to committer's email address
2개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  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 파일 보기

@@ -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 파일 보기

@@ -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

Loading…
취소
저장