File: dpm-srm-server-postgres.prerm

package info (click to toggle)
lcgdm 1.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 17,532 kB
  • sloc: ansic: 226,887; sh: 13,562; perl: 11,575; python: 11,572; cpp: 5,716; sql: 1,824; makefile: 1,301; fortran: 113
file content (22 lines) | stat: -rwxr-xr-x 534 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
set -e

if [ -x "/etc/init.d/dpm-srmv1" ]; then
	invoke-rc.d dpm-srmv1 stop || exit 1
fi

if [ -x "/etc/init.d/dpm-srmv2" ]; then
	invoke-rc.d dpm-srmv2 stop || exit 1
fi

if [ -x "/etc/init.d/dpm-srmv2.2" ]; then
	invoke-rc.d dpm-srmv2.2 stop || exit 1
fi

if [ "$1" = "remove" ] ; then
	update-alternatives --remove dpm-srmv1 /usr/lib/dpm-postgres/dpm-srmv1
	update-alternatives --remove dpm-srmv2 /usr/lib/dpm-postgres/dpm-srmv2
	update-alternatives --remove dpm-srmv2.2 /usr/lib/dpm-postgres/dpm-srmv2.2
fi

#DEBHELPER#