Skip to content

Commit

Permalink
fix(tests): fix package name for debian
Browse files Browse the repository at this point in the history
  • Loading branch information
sticky-note committed Aug 13, 2019
1 parent 7e30f92 commit 4f75eac
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/integration/default/controls/package_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@

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'
Expand Down

0 comments on commit 4f75eac

Please sign in to comment.