mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-07 10:39:29 -05:00
missing optional parameters for restart and boot functions
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> SVN-Revision: 10245
This commit is contained in:
@@ -17,12 +17,12 @@ reload() {
|
||||
|
||||
restart() {
|
||||
trap '' TERM
|
||||
stop
|
||||
start
|
||||
stop "$@"
|
||||
start "$@"
|
||||
}
|
||||
|
||||
boot() {
|
||||
start
|
||||
start "$@"
|
||||
}
|
||||
|
||||
shutdown() {
|
||||
|
||||
Reference in New Issue
Block a user