25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh
-
- set -e
-
- ALTERNATIVES="@ALTERNATIVES@"
-
- case "${1}" in
- remove|deconfigure)
- update-alternatives --quiet --remove dwm /usr/bin/dwm.default
-
- for ALTERNATIVE in ${ALTERNATIVES}
- do
- update-alternatives --quiet --remove dwm /usr/bin/dwm.${ALTERNATIVE}
- done
- ;;
-
- upgrade|failed-upgrade)
-
- ;;
-
- *)
- echo "prerm called with unknown argument \`${1}'" >&2
- exit 1
- ;;
- esac
-
- #DEBHELPER#
-
- exit 0
|