summaryrefslogtreecommitdiffstats
path: root/debian/frr.postrm
diff options
context:
space:
mode:
authorMartin Winter <mwinter@opensourcerouting.org>2017-06-09 04:14:41 +0200
committerMartin Winter <mwinter@opensourcerouting.org>2017-11-18 02:55:30 +0100
commit495feb8a41c59f3741eedd1386e40c0f18335294 (patch)
treee053a24f62b2c9c9b602dc4a221721633ce841ef /debian/frr.postrm
parentbackports: minimize diffs with base debian files (diff)
downloadfrr-495feb8a41c59f3741eedd1386e40c0f18335294.tar.xz
frr-495feb8a41c59f3741eedd1386e40c0f18335294.zip
debian->debianpkg: Move debian files from debian dir to debianpkg dir.
Debian build systems use debian subdir for building and having a debian dir in the source package causes issues. Moving it to debianpkg avoids the issue and allows us to ship debian package files in the source distribution Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
Diffstat (limited to 'debian/frr.postrm')
-rw-r--r--debian/frr.postrm12
1 files changed, 0 insertions, 12 deletions
diff --git a/debian/frr.postrm b/debian/frr.postrm
deleted file mode 100644
index 26576fd13..000000000
--- a/debian/frr.postrm
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash -e
-
-if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
-${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*"}
-# set -u not because of debhelper
-
-if [ "$1" = "purge" ]; then
- rm -rf /etc/frr /var/run/frr /var/log/frr
- userdel frr >/dev/null 2>&1 || true
-fi
-
-#DEBHELPER#