From: Timothy Redaelli Date: Fri, 22 Dec 2017 15:00:52 +0000 (+0100) Subject: rhel: use the functions in ovs-lib.in in ovs-systemd-reload X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d922ebc876afb89729e5e582cc4642e3ae8d4799;p=ovs.git rhel: use the functions in ovs-lib.in in ovs-systemd-reload To avoid code duplication use the functions from ovs-lib.in Signed-off-by: Timothy Redaelli Signed-off-by: Ben Pfaff Tested-by: Greg Rose Reviewed-by: Greg Rose --- diff --git a/rhel/usr_share_openvswitch_scripts_ovs-systemd-reload b/rhel/usr_share_openvswitch_scripts_ovs-systemd-reload index 3ac1a46c6..5d2efc621 100755 --- a/rhel/usr_share_openvswitch_scripts_ovs-systemd-reload +++ b/rhel/usr_share_openvswitch_scripts_ovs-systemd-reload @@ -14,23 +14,32 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Save flows -bridges=$(ovs-vsctl -- --real list-br) -flows=$(/usr/share/openvswitch/scripts/ovs-save save-flows $bridges) +case $0 in + */*) dir0=`echo "$0" | sed 's,/[^/]*$,,'` ;; + *) dir0=./ ;; +esac +. "$dir0/ovs-lib" || exit 1 -# Restart the database first, since a large database may take a -# while to load, and we want to minimize forwarding disruption. -systemctl --job-mode=ignore-dependencies restart ovsdb-server +stop_ovsdb() { + systemctl --job-mode=ignore-dependencies stop ovsdb-server +} -# Stop ovs-vswitchd. -systemctl --job-mode=ignore-dependencies stop ovs-vswitchd +start_ovsdb() { + systemctl --job-mode=ignore-dependencies start ovsdb-server +} -# Start vswitchd by asking it to wait till flow restore is finished. -ovs-vsctl --no-wait set open_vswitch . other_config:flow-restore-wait=true -systemctl --job-mode=ignore-dependencies start ovs-vswitchd +stop_forwarding() { + systemctl --job-mode=ignore-dependencies stop ovs-vswitchd +} -# Restore saved flows and inform vswitchd that we are done. -eval "$flows" -ovs-vsctl --if-exists remove open_vswitch . other_config flow-restore-wait=true +start_forwarding() { + systemctl --job-mode=ignore-dependencies start ovs-vswitchd +} + +add_managers() { + : +} + +restart exit 0