# This is a default template for a post-install scriptlet.  You can
# remove any functions you don't need (and this header).

# arg 1:  the new package version
post_install() {
  cat << EOF
ARCHBOOT usage:
---------------
--> https://wiki.archlinux.org/title/Archboot
EOF
}

post_upgrade() {
  post_install $1
}

op=$1
shift
$op $*
