aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-09-05 18:21:39 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-05 18:21:39 +0000
commit74ed9b29e9ef7ce0840e3b71d9e337a82f5343ca (patch)
tree48a3d0f30e341f71c06976199f602d4b74d26c02
parenteca57b7812e275acb3ce92177b1f81cfce378a94 (diff)
parentab28924eb17d533185fecfe082c224fc96279621 (diff)
Merge "Add alternative sources.list file"
-rw-r--r--.gitignore1
l---------vagrant/installer1
-rwxr-xr-xvagrant/installer.sh5
3 files changed, 7 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index b38d6e29..e6cf3268 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,5 +30,6 @@ src/k8splugin/plugins/**/*.so
vagrant/inventory/hosts.ini
vagrant/inventory/group_vars/all.yml
vagrant/config/pdf.yml
+vagrant/sources.list
*.retry
*.vdi
diff --git a/vagrant/installer b/vagrant/installer
new file mode 120000
index 00000000..2b6cb163
--- /dev/null
+++ b/vagrant/installer
@@ -0,0 +1 @@
+installer.sh \ No newline at end of file
diff --git a/vagrant/installer.sh b/vagrant/installer.sh
index 29866a82..b4886f21 100755
--- a/vagrant/installer.sh
+++ b/vagrant/installer.sh
@@ -260,6 +260,11 @@ k8s_info_file=$krd_folder/k8s_info.log
mkdir -p $log_folder
# Install dependencies
+# Setup proxy variables
+if [ -f $krd_folder/sources.list ]; then
+ mv /etc/apt/sources.list /etc/apt/sources.list.backup
+ cp $krd_folder/sources.list /etc/apt/sources.list
+fi
apt-get update
install_k8s
install_addons