diff options
author | Arnaud Desmons <adesmons@mandriva.com> | 2002-07-26 16:43:40 +0000 |
---|---|---|
committer | Arnaud Desmons <adesmons@mandriva.com> | 2002-07-26 16:43:40 +0000 |
commit | 66fe562443fbb2e4d61f8459c8f903940927093d (patch) | |
tree | c6448cb6d36a0da85f3dd6819c6c1fc098e4b066 /postfix_wizard | |
parent | 589d953396b8feeaf702fcbb7134a56ae8abc8a1 (diff) | |
download | drakwizard-66fe562443fbb2e4d61f8459c8f903940927093d.tar drakwizard-66fe562443fbb2e4d61f8459c8f903940927093d.tar.gz drakwizard-66fe562443fbb2e4d61f8459c8f903940927093d.tar.bz2 drakwizard-66fe562443fbb2e4d61f8459c8f903940927093d.tar.xz drakwizard-66fe562443fbb2e4d61f8459c8f903940927093d.zip |
fixed: func return value was not tested
Diffstat (limited to 'postfix_wizard')
-rw-r--r-- | postfix_wizard/postfix.wiz | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/postfix_wizard/postfix.wiz b/postfix_wizard/postfix.wiz index b17a76c2..7cc436c6 100644 --- a/postfix_wizard/postfix.wiz +++ b/postfix_wizard/postfix.wiz @@ -180,7 +180,7 @@ <Page helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-postfix.html" name="Form_of_address" - jumpScript="__WIZ_HOME__/postfix_wizard/scripts/check_masquerade.sh" + jumpScript="__WIZ_HOME__/postfix_wizard/check_masquerade.sh" executionLevel="NORMAL" nextFinish="false" canBack="true" @@ -327,7 +327,7 @@ <Page helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-postfix.html" name="ISP" - jumpScript="__WIZ_HOME__/postfix_wizard/scripts/check_relay.sh" + jumpScript="__WIZ_HOME__/postfix_wizard/check_relay.sh" executionLevel="NORMAL" nextFinish="false" canBack="true" @@ -526,6 +526,7 @@ <Page helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-postfix.html" name="Confirmation" + func="do_it" nextButtonText="Do It" executionLevel="NORMAL" nextFinish="false" @@ -601,7 +602,7 @@ <Freetext name="freetext1" alignement="Fill" - fillScript="(export wiz_ext_mail_relay=`__WIZ_HOME__/postfix_wizard/scripts/compute_mail_relay.sh`; echo $wiz_ext_mail_relay)" + fillScript="(export wiz_ext_mail_relay=`__WIZ_HOME__/postfix_wizard/compute_mail_relay.sh`; echo $wiz_ext_mail_relay)" helpText="Internet Mail Gateway" guiType="textfield" editable="false" @@ -617,7 +618,7 @@ <Freetext name="freetext2" alignement="Fill" - fillScript="(export wiz_mail_masquerade=`__WIZ_HOME__/postfix_wizard/scripts/compute_masquerade.sh`; echo $wiz_mail_masquerade)" + fillScript="(export wiz_mail_masquerade=`__WIZ_HOME__/postfix_wizard/compute_masquerade.sh`; echo $wiz_mail_masquerade)" helpText="Form of the Address" guiType="textfield" editable="false" @@ -806,7 +807,6 @@ helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-postfix.html" name="Congratulations" nextButtonText="Quit" - func="do_it" executionLevel="NORMAL" nextFinish="true" canBack="false" |