mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +01:00
21 lines
273 B
Bash
21 lines
273 B
Bash
#! /bin/sh -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
ldconfig
|
|
;;
|
|
|
|
abort-upgrade|abort-deconfigure|abort-remove)
|
|
# how did we got here? Force a non-zero exit code
|
|
exit 1
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument: \$1" >&2
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|