소스 검색

fix(tests): fix package name for debian

tags/v0.39.2
sticky-note 5 년 전
부모
커밋
4f75eac5fe
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +8
    -1
      test/integration/default/controls/package_spec.rb

+ 8
- 1
test/integration/default/controls/package_spec.rb 파일 보기

@@ -3,7 +3,14 @@ control 'Php package' do

pkg_name =
case os[:family]
when 'debian', 'redhat', 'fedora'
when 'debian'
case os[:name]
when 'ubuntu'
'php'
when 'debian'
'php7.0'
end
when 'redhat', 'fedora'
'php'
when 'suse'
'php5'

Loading…
취소
저장