summaryrefslogtreecommitdiff
path: root/pkgtools/rc.d-boot/DEINSTALL
blob: 96fb111e5ee91437e5c0836648fa8da9dcf58518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# $NetBSD: DEINSTALL,v 1.4 2018/12/28 20:24:02 schmonz Exp $

RCDBOOT_STYLE=@RCDBOOT_STYLE@
RCD_SCRIPTS_DIR=@RCD_SCRIPTS_DIR@

case "${STAGE}" in

DEINSTALL)
	case "${RCDBOOT_STYLE}" in
	darwin-launchd)
		;;
	freebsd-native)
		;;
	linux-systemd)
		systemctl disable pkgsrc-rc.d-boot.service
		;;
	linux-sysv-debian)
		update-rc.d pkgsrc-rc.d-boot remove
		;;
	linux-sysv-redhat)
		chkconfig pkgsrc-rc.d-boot off
		chkconfig --del pkgsrc-rc.d-boot
		;;
	netbsd-native)
		;;
	openbsd-rcd)
		short_order=$(rc.d-boot list | ${SED} -e "s|^${RCD_SCRIPTS_DIR}/||" | ${GREP} -v '^[A-Z]*$')
		for _svc in ${short_order}; do
			# lifted from OpenBSD 6.4 /usr/sbin/rcctl
			${SED} "/^pkg_scripts[[:>:]]/{s/[[:<:]]${_svc}[[:>:]]//g
				s/['\"]//g;s/ *= */=/;s/   */ /g;s/ $//;/=$/d;}" \
				< /etc/rc.conf.local \
				> /etc/rc.conf.local.tmp \
				&& ${MV} /etc/rc.conf.local.tmp /etc/rc.conf.local
		done
		;;
	esac

	case "${RCDBOOT_STYLE}" in
	*-native)
		;;
	*)
		${CAT} <<EOF
===========================================================================

pkgsrc-provided rc.d scripts will no longer be started at boot.

If you wish to stop them, please do so now.

===========================================================================
EOF
		;;
	esac

	;;

esac