mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-29 11:06:18 +00:00
30 lines
483 B
Bash
Executable file
30 lines
483 B
Bash
Executable file
#!/bin/sh
|
|
# prerm script for monado
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|deconfigure)
|
|
|
|
update-alternatives --remove openxr1-active-runtime /usr/share/openxr/1/openxr_monado.json
|
|
;;
|
|
upgrade)
|
|
;;
|
|
failed-upgrade)
|
|
;;
|
|
|
|
*)
|
|
echo "prerm called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|