19 lines
203 B
Plaintext
19 lines
203 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
purge)
|
||
|
|
rm -f /var/lib/blueman/network.state
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
|
||
|
|
# dh_installdeb will replace this with shell code automatically
|
||
|
|
# generated by other debhelper scripts.
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
exit 0
|
||
|
|
|
||
|
|
|