projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
update imq patches (fixes #2009)
[openwrt.git]
/
package
/
base-files
/
files
/
etc
/
rc.common
diff --git
a/package/base-files/files/etc/rc.common
b/package/base-files/files/etc/rc.common
index
1e6c5e9
..
4ffc798
100755
(executable)
--- a/
package/base-files/files/etc/rc.common
+++ b/
package/base-files/files/etc/rc.common
@@
-3,8
+3,6
@@
. $IPKG_INSTROOT/etc/functions.sh
. $IPKG_INSTROOT/etc/functions.sh
-START=50
-
start() {
return 0
}
start() {
return 0
}
@@
-18,6
+16,7
@@
reload() {
}
restart() {
}
restart() {
+ trap '' TERM
stop
start
}
stop
start
}
@@
-33,12
+32,14
@@
shutdown() {
disable() {
name="$(basename "${initscript}")"
rm -f "$IPKG_INSTROOT"/etc/rc.d/S??$name
disable() {
name="$(basename "${initscript}")"
rm -f "$IPKG_INSTROOT"/etc/rc.d/S??$name
+ rm -f "$IPKG_INSTROOT"/etc/rc.d/K??$name
}
enable() {
name="$(basename "${initscript}")"
disable
}
enable() {
name="$(basename "${initscript}")"
disable
- ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}"
+ [ "$START" ] && ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}"
+ [ "$STOP" ] && ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}"
}
enabled() {
}
enabled() {
This page took
0.024724 seconds
and
4
git commands to generate.