diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2016-03-25 16:44:57 -0700 |
---|---|---|
committer | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2016-03-25 16:44:57 -0700 |
commit | 4c4babae8a17df468ca4899f3c3f02506a13aa69 (patch) | |
tree | 057b9d4057020b7eb9f0f30e456f820454855579 /vagrant/basebuild | |
parent | f76f44f9c8d80e072c568c68ea2289653ddad475 (diff) |
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 <agrimberg@linuxfoundation.org>
Diffstat (limited to 'vagrant/basebuild')
-rw-r--r-- | vagrant/basebuild/bootstrap.sh | 4 |
1 files 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 |