mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
base-files: warn when calling /etc/init.d/<script> enable and neither START nor STOP is defined
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27797 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -42,6 +42,10 @@ disable() {
|
|||||||
enable() {
|
enable() {
|
||||||
name="$(basename "${initscript}")"
|
name="$(basename "${initscript}")"
|
||||||
disable
|
disable
|
||||||
|
[ -n "$START" -o -n "$STOP" ] || {
|
||||||
|
echo "/etc/init.d/$name does not have a START or STOP value"
|
||||||
|
return 1
|
||||||
|
}
|
||||||
[ "$START" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}"
|
[ "$START" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}"
|
||||||
[ "$STOP" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}"
|
[ "$STOP" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user