10 lines
131 B
Plaintext
10 lines
131 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
(remove)
|
||
|
|
update-alternatives --remove which /usr/bin/which.debianutils
|
||
|
|
;;
|
||
|
|
esac
|