Fix rh_systems shell function 18/618/1
authorAndrew Grimberg <[email protected]>
Fri, 25 Mar 2016 23:44:57 +0000 (16:44 -0700)
committerAndrew Grimberg <[email protected]>
Fri, 25 Mar 2016 23:44:57 +0000 (16:44 -0700)
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 <[email protected]>
vagrant/basebuild/bootstrap.sh

index e3ce2ca..6bceb47 100644 (file)
@@ -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