projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e24316
)
missing optional parameters for restart and boot functions
author
Felix Fietkau
<nbd@openwrt.org>
Fri, 25 Jan 2008 10:59:40 +0000
(10:59 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Fri, 25 Jan 2008 10:59:40 +0000
(10:59 +0000)
Add missing optional parameters in remaining rc functions.
It fixes my previous implementation of parametrized rc functions [8106],
ticket #3063, thanks argovela-at-yahoo-com for reporting.
Signed-off-by: Lubos Stanek (lubek) <lubek@lubek.name>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10245
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/files/etc/rc.common
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/rc.common
b/package/base-files/files/etc/rc.common
index
99e2a5d
..
6b3c213
100755
(executable)
--- a/
package/base-files/files/etc/rc.common
+++ b/
package/base-files/files/etc/rc.common
@@
-17,12
+17,12
@@
reload() {
restart() {
trap '' TERM
- stop
- start
+ stop
"$@"
+ start
"$@"
}
boot() {
- start
+ start
"$@"
}
shutdown() {