File: graphite-web.prerm

package info (click to toggle)
graphite-web 1.1.10-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,860 kB
  • sloc: javascript: 86,828; python: 12,228; sh: 91; makefile: 54
file content (14 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
	rm -f /etc/graphite/*.pyc
	rm -f /var/lib/graphite/search_index
	rm -rf /var/lib/graphite/.fontconfig
fi

#DEBHELPER#

exit 0