7 lines
130 B
Bash
7 lines
130 B
Bash
#!/bin/sh -e
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
dpkg-divert --package @browser@ --rename --remove /usr/bin/firefox
|
|
fi
|
|
|
|
#DEBHELPER#
|