aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mips32r2-poky-linux/busybox/busybox-hwclock/latest.pkg_postrm
blob: f9aff8681602947e4217886472692810a6cbe02b (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e
if true && type update-rc.d >/dev/null 2>/dev/null; then
	if [ -n "$D" ]; then
		OPT="-f -r $D"
	else
		OPT="-f"
	fi
	update-rc.d $OPT hwclock.sh remove
fi