fuel-plugin-ovs/demo/00_bootstrap.sh

14 lines
342 B
Bash
Executable File

#!/bin/sh
HTTP_PROXY=${HTTP_PROXY:-http://proxy-chain.intel.com:911}
cat <<EOF | sudo tee /etc/apt/apt.conf
Acquire::http::Proxy "$HTTP_PROXY";
EOF
sudo apt-get update -y
sudo apt-get install -y git
git config --global http.proxy ${HTTP_PROXY}
git clone https://github.com/openstack/fuel-plugin-ovs/
git config --global --unset http.proxy