15 lines
179 B
Plaintext
15 lines
179 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
|
||
|
|
rm -f /etc/newt/palette*
|
||
|
|
|
||
|
|
# Cleanup broken alternatives. See #868056
|
||
|
|
update-alternatives --quiet --remove-all newt-palette >/dev/null 2>&1 || true
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
exit 0
|
||
|
|
~
|