10 lines
99 B
Bash
10 lines
99 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = purge ]; then
|
|
update-rc.d bwbar remove >/dev/null
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|