File: neurodebian.postrm

package info (click to toggle)
neurodebian 0.41.0
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 12,912 kB
  • sloc: sh: 2,370; python: 1,972; perl: 395; makefile: 204; javascript: 63
file content (21 lines) | stat: -rwxr-xr-x 308 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

set -e

case "$1" in
    purge)
		rm -f /etc/apt/sources.list.d/neurodebian.sources*.list
    ;;

    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
    ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0