[test] Remove esoteric apt-get in Vagrantfile
Removes an esoteric `apt-get update` variant used in Vagrantfile that was causing only parts of the apt repository to update. That was the point of the command but when it would leave the repository only half built which made installing anything but Java difficult. The speed isn't worth the complexity.
This commit is contained in:
parent
66c53e7f91
commit
c427b3e9c2
|
@ -127,9 +127,7 @@ def deb_common(config, add_openjdk_repository_command, openjdk_list)
|
|||
ls /etc/apt/sources.list.d/#{openjdk_list}.list > /dev/null 2>&1 ||
|
||||
(echo "Importing java-8 ppa" &&
|
||||
#{add_openjdk_repository_command} &&
|
||||
apt-get update -o \
|
||||
Dir::Etc::sourcelist="$(ls /etc/apt/sources.list.d/#{openjdk_list}.list)" \
|
||||
-o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0")
|
||||
apt-get update)
|
||||
SHELL
|
||||
)
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue