]> git.proxmox.com Git - mirror_ovs.git/blame - debian/openvswitch-switch.postrm
cirrus: Use FreeBSD 12.2.
[mirror_ovs.git] / debian / openvswitch-switch.postrm
CommitLineData
064af421
BP
1#!/bin/sh
2# postrm script for openvswitch-switch
3#
4# see: dh_installdeb(1)
5
6set -e
7
8# summary of how this script can be called:
9# * <postrm> `remove'
10# * <postrm> `purge'
11# * <old-postrm> `upgrade' <new-version>
12# * <new-postrm> `failed-upgrade' <old-version>
13# * <new-postrm> `abort-install'
14# * <new-postrm> `abort-install' <old-version>
15# * <new-postrm> `abort-upgrade' <old-version>
16# * <disappearer's-postrm> `disappear' <overwriter>
17# <overwriter-version>
18# for details, see http://www.debian.org/doc/debian-policy/ or
19# the debian-policy package
20
21
22case "$1" in
23 purge)
24e81092
JP
24 rm -f /etc/openvswitch/conf.db
25 rm -f /etc/openvswitch/.conf.db.~lock~
f20bbd7a 26 rm -f /etc/default/openvswitch-switch
e8b95166
BP
27 rm -f /var/log/openvswitch/ovs-vswitchd.log* || true
28 rm -f /var/log/openvswitch/ovsdb-server.log* || true
3445d6de 29 rm -f /etc/openvswitch/system-id.conf
f20bbd7a 30 ;;
064af421
BP
31
32 remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
f20bbd7a 33 ;;
064af421
BP
34
35 *)
36 echo "postrm called with unknown argument \`$1'" >&2
37 exit 1
f20bbd7a 38 ;;
064af421
BP
39esac
40
41# dh_installdeb will replace this with shell code automatically
42# generated by other debhelper scripts.
43
44#DEBHELPER#
45
46exit 0
47
48