File: neutron-dynamic-routing-common.prerm

package info (click to toggle)
neutron-dynamic-routing 2%3A26.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,208 kB
  • sloc: python: 6,598; sh: 152; makefile: 45
file content (16 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

#PKGOS-INCLUDE#

if [ "$1" = "remove" ] ; then
        # Disable neutron plugin
        if which neutron-plugin-manage > /dev/null ; then
                neutron-plugin-manage disable --service-plugin bgp
        fi
fi

#DEBHELPER#

exit 0