#!/bin/bash # # Copyright 2014, Greg Althaus # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Turn off firewalls. chkconfig iptables off service iptables stop # Set selinux to permissive setenforce 0 sed -i "s/SELINUX=.*/SELINUX=permissive/g" /etc/selinux/config # Get release requested if [[ $1 = '--develop' ]]; then shift RELEASE="develop" RELPATH="develop" elif [[ $1 = '--master' ]]; then shift RELEASE="master" RELPATH="master" elif [[ $1 = '--release' ]]; then shift RELEASE="$1" RELPATH="release/$1" shift else RELEASE="master" RELPATH="master" fi # Setup repo cd /etc/yum.repos.d # Setup OCB repo cat > ocb-$RELEASE-install.repo <