mirror of
https://github.com/goreleaser/nfpm
synced 2025-05-06 11:55:32 +02:00
34 lines
693 B
Bash
34 lines
693 B
Bash
#!/bin/sh
|
|
|
|
cleanInstall() {
|
|
printf "\033[32m Post Install of a clean install\033[0m\n"
|
|
echo "Install" > /tmp/postinstall-proof
|
|
}
|
|
|
|
upgrade() {
|
|
printf "\033[32m Post Install of an upgrade\033[0m\n"
|
|
echo "Upgrade" > /tmp/postinstall-proof
|
|
}
|
|
|
|
action="$1"
|
|
if [ "$1" = "configure" ] && [ -z "$2" ]; then
|
|
# Alpine linux does not pass args, and deb passes $1=configure
|
|
action="install"
|
|
elif [ "$1" = "configure" ] && [ -n "$2" ]; then
|
|
# deb passes $1=configure $2=<current version>
|
|
action="upgrade"
|
|
fi
|
|
|
|
case "$action" in
|
|
"1" | "install")
|
|
cleanInstall
|
|
;;
|
|
"2" | "upgrade")
|
|
upgrade
|
|
;;
|
|
*)
|
|
printf "\033[32m Alpine\033[0m"
|
|
cleanInstall
|
|
;;
|
|
esac
|