1
0
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:
Vadim Kurland 2010-04-20 17:24:59 +00:00
parent c88c5d726b
commit b6a7824ff5
5 changed files with 20 additions and 1 deletions

View File

@ -1 +1 @@
#define BUILD_NUM 2822
#define BUILD_NUM 2823

View File

@ -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

View File

@ -24,6 +24,7 @@
{{$shell_functions}}
verify_interfaces() {
:
{{$verify_interfaces}}
}
@ -47,6 +48,7 @@ script_body() {
}
reset_all() {
:
{{$reset_all}}
}

View File

@ -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}}
}

View File

@ -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}}
}