summaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/functions
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2017-08-17 00:02:52 +0000
committerGerrit Code Review <gerrit@onap.org>2017-08-17 00:02:52 +0000
commit68527bc1a68264f6be0953a91e4cb7c3aac41347 (patch)
tree0950d37bbc855ccd2ecbb5253c4e6cfa0b918d55 /bootstrap/vagrant-onap/lib/functions
parentc4e26cae3b8f51efbd1b643cbfd04b6353ea24d0 (diff)
parent965126534574cb0377db6c8f7f7004c072ed403a (diff)
Merge "Implement test_install_policy UT"
Diffstat (limited to 'bootstrap/vagrant-onap/lib/functions')
-rwxr-xr-xbootstrap/vagrant-onap/lib/functions11
1 files changed, 4 insertions, 7 deletions
diff --git a/bootstrap/vagrant-onap/lib/functions b/bootstrap/vagrant-onap/lib/functions
index 458b34c61..709d7ebc0 100755
--- a/bootstrap/vagrant-onap/lib/functions
+++ b/bootstrap/vagrant-onap/lib/functions
@@ -6,15 +6,12 @@ source /var/onap/commons
source /var/onap/_composed_functions
source /var/onap/_onap_functions
+export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' |sort -n | head -1)
+export IP_ADDRESS=$(ifconfig eth0 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2)
+
mvn_conf_file=/root/.m2/settings.xml
git_src_folder=/opt
-# export_env_vars() - Export environment variables
-function export_env_vars {
- export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' |sort -n | head -1)
- export IP_ADDRESS=$(ifconfig eth0 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2)
-}
-
# configure_dns() - DNS/GW IP address configuration
function configure_dns {
echo "nameserver 10.0.0.1" >> /etc/resolvconf/resolv.conf.d/head
@@ -51,7 +48,7 @@ function clone_repo {
local repo=$1
local dest_folder=${2:-$git_src_folder/$repo}
if [ ! -d $dest_folder ]; then
- _git_timed clone -b $gerrit_branch --single-branch ${repo_url}${repo} $dest_folder
+ _git_timed clone ${repo_url}${repo} $dest_folder
else
pushd $dest_folder
_git_timed pull