File: apt-spy.postinst

package info (click to toggle)
apt-spy 3.1-16
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 312 kB
  • ctags: 55
  • sloc: ansic: 826; makefile: 53; sh: 6
file content (12 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# If /usr/share/apt-spy directory exists, remove it:
if [ -f /usr/share/apt-spy/README.mirrors.txt ]; then \
    rm -f /usr/share/apt-spy/README.mirrors.txt
fi
if [ -d  /usr/share/apt-spy ]; then \
    rmdir /usr/share/apt-spy
fi

#DEBHELPER#