File: prerm

package info (click to toggle)
fcgiwrap 1.1.0-12
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 280 kB
  • sloc: ansic: 703; sh: 198; makefile: 35
file content (10 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

# Stop the socket on remove so fcgiwrap is not restarted via socket activation
if [ -d /run/systemd/system ] && [ "$1" = remove ] ; then
	systemctl stop fcgiwrap.socket || true
fi

#DEBHELPER#