Files
mbase/debian/mbase-control.preinst
T
Олег Бородин 25365aef77 init import
2026-05-24 11:02:51 +02:00

21 lines
205 B
Bash
Executable File

#!/bin/sh
set -e
case "$1" in
install|upgrade)
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0