aboutsummaryrefslogtreecommitdiff
path: root/debian/openvswitch-brcompat.postinst
blob: 12e3b0557d276737375ea0da151a338030b2b3f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

# If openvswitch-switch is installed, and then later openvswitch-brcompat is
# installed, make sure that ovs-brcompatd starts.
if test X"$1" = Xconfigure && \
   test -x /etc/init.d/openvswitch-switch && \
   test -e /var/run/openvswitch/ovs-vswitchd.pid; then
    invoke-rc.d openvswitch-switch start || exit $?
fi

#DEBHELPER#

exit 0