surpport seeking the recorded video
[vuplus_openembedded] / recipes / sysvinit / sysvinit / postinst
1 #!/bin/busybox ash
2
3 action="$1"
4 oldversion="$2"
5
6 umask 022
7
8 if [ "$action" != configure ]
9 then
10         exit 0
11 fi
12
13 update-alternatives --install /sbin/init init /sbin/sysvinit 25
14 update-alternatives --install /sbin/need need /sbin/need.sysvinit 25
15 update-alternatives --install /sbin/provide provide /sbin/provide.sysvinit 25
16
17 exit 0