File: libax25.postrm

package info (click to toggle)
libax25 0.0.12-rc5%2Bgit20190411%2Bb17ff36-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 324 kB
  • sloc: ansic: 2,896; makefile: 76; sh: 7
file content (19 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Debian libax25 package post removal script
# Copyright 2002 Patrick Ouellette
# Licensed  under the GNU General Public License, version 2.  See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.
# 
#

set -e

#DEBHELPER#

if [ "$1" = "purge" ]; then
   if [ -d /etc/ax25 ]; then
      rm -r /etc/ax25
   fi
fi

exit 0