Skip to content

Commit

Permalink
(MODULES-4819) remove include_src parameter from vhost_spec
Browse files Browse the repository at this point in the history
include_src is no longer a parameter in apt::source, which is used in vhost_spec as part of the fastcgi test. Instead, include is now a hash with keys 'deb' and 'src'. 'src' defaults to false as of apt 4.0.0 so I removed include_src altogether with no replacement
  • Loading branch information
Eric Putnam authored and Eric Putnam committed May 3, 2017
1 parent 1ef4aa2 commit 583b2e4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions spec/acceptance/vhost_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1589,21 +1589,18 @@ class { 'apache': }
location => $_location,
release => $_release,
repos => $_repos,
include_src => false,
}
apt::source { "${_os}_${_release}-updates":
location => $_location,
release => "${_release}-updates",
repos => $_repos,
include_src => false,
}
apt::source { "${_os}_${_release}-security":
location => $_security_location,
release => $_release_security,
repos => $_repos,
include_src => false,
}
EOS

Expand Down

0 comments on commit 583b2e4

Please sign in to comment.