net.sourceforge.javadpkg.impl.preinst Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dpkg Show documentation
Show all versions of dpkg Show documentation
The library for reading and writing Debian Packages.
#!/bin/sh
# --- Enable error detection. ---
set -e
# --- Set version of this package ---
THISVERSION="${deb.version}"
echo Pre-installation script version $THISVERSION
echo " Parameters : $@"
echo " Option : $1"
echo " Currently installed version : $2"
echo " Version of this package : $THISVERSION"
case "$1" in
install)
echo " No tasks."
;;
upgrade)
echo " No tasks."
;;
*)
echo " Option $1 not supported by this script."
;;
esac