15 lines
217 B
Bash
Executable File
15 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove)
|
|
if update-alternatives --query newt-palette | grep -qs "Value: /etc/newt/palette.original"; then
|
|
update-alternatives --auto newt-palette
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
exit 0
|