From 4c4babae8a17df468ca4899f3c3f02506a13aa69 Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Fri, 25 Mar 2016 16:44:57 -0700 Subject: [PATCH] Fix rh_systems shell function The rh_systems shell function was not properly defined. This corrects it so that the bootstrapping can work Change-Id: Ic5f03feac7deb5c8da54f3db4b0fb6a599ff0d85 Signed-off-by: Andrew Grimberg --- vagrant/basebuild/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vagrant/basebuild/bootstrap.sh b/vagrant/basebuild/bootstrap.sh index e3ce2cac2..6bceb4790 100644 --- a/vagrant/basebuild/bootstrap.sh +++ b/vagrant/basebuild/bootstrap.sh @@ -41,7 +41,7 @@ ubuntu_systems() { apt-get install -y --force-yes python-virtualenv python-pip python-dev } -rh_systems { +rh_systems() { # Install build tools yum groupinstall 'Development Tools' -y yum install openssl-devel -y @@ -80,4 +80,4 @@ case "$OS" in *) echo "---> Unknown operating system" ;; -esac \ No newline at end of file +esac -- 2.16.6