Merge pull request #13644 from nik9000/fully_update_on_repo_add

Remove esoteric apt-get in Vagrantfile
This commit is contained in:
Nik Everett 2015-09-22 09:07:20 -04:00
commit a08cd26d5e
1 changed files with 1 additions and 3 deletions

4
Vagrantfile vendored
View File

@ -132,9 +132,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