5 # chkconfig: 2345 09 91
6 # description: Manage Open vSwitch kernel modules and user-space daemons
8 # Copyright (C) 2009, 2010, 2011, 2013 Nicira, Inc.
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at:
14 # http://www.apache.org/licenses/LICENSE-2.0
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
22 # Provides: openvswitch-switch
25 # Default-Start: 2 3 4 5
27 # Short-Description: Open vSwitch switch
30 . /usr/share/openvswitch/scripts/ovs-lib || exit 1
31 test -e /etc/sysconfig/openvswitch && . /etc/sysconfig/openvswitch
34 set ovs_ctl ${1-start}
35 set "$@" --system-id=random
36 if test X"$FORCE_COREFILES" != X; then
37 set "$@" --force-corefiles="$FORCE_COREFILES"
39 if test X"$OVSDB_SERVER_PRIORITY" != X; then
40 set "$@" --ovsdb-server-priority="$OVSDB_SERVER_PRIORITY"
42 if test X"$VSWITCHD_PRIORITY" != X; then
43 set "$@" --ovs-vswitchd-priority="$VSWITCHD_PRIORITY"
45 if test X"$VSWITCHD_MLOCKALL" != X; then
46 set "$@" --mlockall="$VSWITCHD_MLOCKALL"
48 set "$@" $OVS_CTL_OPTS
51 touch /var/lock/subsys/openvswitch
56 rm -f /var/lock/subsys/openvswitch
60 if [ "$1" = "--save-flows=yes" ]; then
90 start force-reload-kmod
93 printf "$0 [start|stop|restart|reload|force-reload|status|version|force-reload-kmod]\n"
96 printf "Unknown command: $1\n"