mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-23 07:23:40 +00:00
22 lines
258 B
Bash
22 lines
258 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|upgrade|deconfigure)
|
|
rm -f /etc/scrapy/service_conf.pyc
|
|
;;
|
|
|
|
failed-upgrade)
|
|
;;
|
|
|
|
*)
|
|
echo "prerm called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|