mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
30 lines
483 B
Plaintext
30 lines
483 B
Plaintext
|
#!/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
|