aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/sysvinit/sysvinit/postinst
blob: b6fe547fa4e62709e6d88ac1129582170cd994de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/busybox ash

action="$1"
oldversion="$2"

umask 022

if [ "$action" != configure ]
then
	exit 0
fi

update-alternatives --install /sbin/init init /sbin/sysvinit 25
update-alternatives --install /sbin/need need /sbin/need.sysvinit 25
update-alternatives --install /sbin/provide provide /sbin/provide.sysvinit 25

exit 0