File: postrm

package info (click to toggle)
prometheus-apache-exporter 1.0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: sh: 52; makefile: 43
file content (12 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

case "$1" in
  purge)
        rm -f /var/log/prometheus/prometheus-apache-exporter.log* \
              /run/prometheus/prometheus-apache-exporter.pid
        ;;
esac

#DEBHELPER#