Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vagrant/provision-master.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ systemctl enable openshift-master.service
systemctl start openshift-master.service

# if SDN requires service on master, then set it up
if [ "${OPENSHIFT_SDN}" == "ovs-simple" ]; then
if [ "${OPENSHIFT_SDN}" != "ovs-gre" ]; then
$(dirname $0)/provision-master-sdn.sh $@
fi

Expand Down
2 changes: 1 addition & 1 deletion vagrant/provision-minion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pushd /vagrant
cp _output/local/go/bin/openshift /usr/bin
popd

if [ "${OPENSHIFT_SDN}" == "ovs-simple" ]; then
if [ "${OPENSHIFT_SDN}" != "ovs-gre" ]; then
$(dirname $0)/provision-node-sdn.sh $@
else
# Setup default networking between the nodes
Expand Down