mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-23 19:57:21 +01:00
fixes #1409, SF bug 2985886.
Depending on the combination of the activated options, shell functions in the generated launcher script could have no body, which is a syntax error in bash.
This commit is contained in:
parent
c88c5d726b
commit
b6a7824ff5
@ -1,3 +1,10 @@
|
||||
2010-04-20 vadim <vadim@vk.crocodile.org>
|
||||
|
||||
* configlets/ipf/script_skeleton: fixed #1409, SF bug 2985886.
|
||||
Depending on the combination of the activated options, shell
|
||||
functions in the generated launcher script could have no body,
|
||||
which is a syntax error in bash.
|
||||
|
||||
2010-04-09 vadim <vadim@vk.crocodile.org>
|
||||
|
||||
* RoutingCompiler_ipt.cpp (RoutingCompiler_ipt::epilog): fixed #1404
|
||||
|
||||
@ -24,6 +24,7 @@
|
||||
{{$shell_functions}}
|
||||
|
||||
verify_interfaces() {
|
||||
:
|
||||
{{$verify_interfaces}}
|
||||
}
|
||||
|
||||
@ -47,6 +48,7 @@ script_body() {
|
||||
}
|
||||
|
||||
reset_all() {
|
||||
:
|
||||
{{$reset_all}}
|
||||
}
|
||||
|
||||
|
||||
@ -24,18 +24,22 @@ FWDIR=`dirname $0`
|
||||
{{$shell_functions}}
|
||||
|
||||
verify_interfaces() {
|
||||
:
|
||||
{{$verify_interfaces}}
|
||||
}
|
||||
|
||||
set_kernel_vars() {
|
||||
:
|
||||
{{$kernel_vars_commands}}
|
||||
}
|
||||
|
||||
prolog_commands() {
|
||||
:
|
||||
{{$prolog_script}}
|
||||
}
|
||||
|
||||
epilog_commands() {
|
||||
:
|
||||
{{$epilog_script}}
|
||||
}
|
||||
|
||||
@ -45,6 +49,7 @@ run_epilog_and_exit() {
|
||||
}
|
||||
|
||||
configure_interfaces() {
|
||||
:
|
||||
{{$configure_interfaces}}
|
||||
}
|
||||
|
||||
|
||||
@ -24,18 +24,22 @@ FWDIR=`dirname $0`
|
||||
{{$shell_functions}}
|
||||
|
||||
verify_interfaces() {
|
||||
:
|
||||
{{$verify_interfaces}}
|
||||
}
|
||||
|
||||
set_kernel_vars() {
|
||||
:
|
||||
{{$kernel_vars_commands}}
|
||||
}
|
||||
|
||||
prolog_commands() {
|
||||
:
|
||||
{{$prolog_script}}
|
||||
}
|
||||
|
||||
epilog_commands() {
|
||||
:
|
||||
{{$epilog_script}}
|
||||
}
|
||||
|
||||
@ -45,6 +49,7 @@ run_epilog_and_exit() {
|
||||
}
|
||||
|
||||
configure_interfaces() {
|
||||
:
|
||||
{{$configure_interfaces}}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user