File: postrm

package info (click to toggle)
prometheus-phpfpm-exporter 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: sh: 52; makefile: 35; php: 23
file content (12 lines) | stat: -rw-r--r-- 199 bytes parent folder | download
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-phpfpm-exporter.log* \
              /run/prometheus/prometheus-phpfpm-exporter.pid
        ;;
esac

#DEBHELPER#