initial commit

This commit is contained in:
Jordan Evans 2015-06-15 10:17:20 -07:00
commit 08d9495a72
47 changed files with 6983 additions and 0 deletions

18
debian/prerm vendored Normal file
View file

@ -0,0 +1,18 @@
#!/bin/sh
case "$1" in
remove|upgrade|deconfigure)
invoke-rc.d bwbar stop
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 0
;;
esac
#DEBHELPER#
exit 0