You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
464 B
22 lines
464 B
#!/bin/bash
|
|
#postinst script for custdesk
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst script called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# unavailable here during custdesk package remove|purge
|
|
# we need to forcibly call it once only, during INSTALL of custdesk package
|
|
[ -f /usr/bin/custdtfiles.sh ] && /usr/bin/custdtfiles.sh > /dev/null 2>&1
|
|
exit 0
|
|
|