6 lines
163 B
Bash
6 lines
163 B
Bash
#!/bin/sh -e
|
|
|
|
# Remove alternatives entry
|
|
if [ "$1" = "remove" -o "$1" = "deconfigure" ]; then
|
|
update-alternatives --remove x-www-browser /usr/bin/chimera2
|
|
fi
|