File: timidity-daemon.preinst

package info (click to toggle)
timidity 2.13.2-40.5
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 13,208 kB
  • ctags: 20,685
  • sloc: ansic: 158,301; sh: 3,778; makefile: 1,158; tcl: 1,048; lisp: 499; perl: 285; ruby: 126
file content (28 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#! /bin/sh

set -e

LAST_VERSION=2.13.2-31

case "$1" in
    install)
    ;;

    upgrade)
    ;;

    abort-upgrade)
    ;;

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

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0