File: python3-exabgp.postinst

package info (click to toggle)
exabgp 4.2.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,612 kB
  • sloc: python: 37,482; sh: 581; perl: 31; makefile: 23
file content (12 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "configure" ] ; then
	update-alternatives --install /usr/sbin/exabgp exabgp /usr/sbin/python3-exabgp 200 \
                            --slave /usr/sbin/exabgpcli exabgpcli /usr/sbin/python3-exabgpcli
fi

#DEBHELPER#

exit 0