diff options
author | Arnaud Desmons <adesmons@mandriva.com> | 2002-07-26 16:37:14 +0000 |
---|---|---|
committer | Arnaud Desmons <adesmons@mandriva.com> | 2002-07-26 16:37:14 +0000 |
commit | 589d953396b8feeaf702fcbb7134a56ae8abc8a1 (patch) | |
tree | 8171fe1f6ca8948af7d83fb41ea87a677935f262 /dhcp_wizard | |
parent | 154c890a0b00ca459000412afc12f6303b2a347f (diff) | |
download | drakwizard-589d953396b8feeaf702fcbb7134a56ae8abc8a1.tar drakwizard-589d953396b8feeaf702fcbb7134a56ae8abc8a1.tar.gz drakwizard-589d953396b8feeaf702fcbb7134a56ae8abc8a1.tar.bz2 drakwizard-589d953396b8feeaf702fcbb7134a56ae8abc8a1.tar.xz drakwizard-589d953396b8feeaf702fcbb7134a56ae8abc8a1.zip |
fixed : func return value was not tested
Diffstat (limited to 'dhcp_wizard')
-rw-r--r-- | dhcp_wizard/dhcp.wiz | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dhcp_wizard/dhcp.wiz b/dhcp_wizard/dhcp.wiz index 6ac5e0f8..ae58fd39 100644 --- a/dhcp_wizard/dhcp.wiz +++ b/dhcp_wizard/dhcp.wiz @@ -137,7 +137,7 @@ helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-dhcp.html" name="ask_dhcp_ip_range" comment="Ask the dhcp ip range" - jumpScript="__WIZ_HOME__/dhcp_wizard/scripts/check_range.sh" + jumpScript="__WIZ_HOME__/dhcp_wizard/check_range.sh" executionLevel="NORMAL" nextFinish="false" canBack="true" @@ -224,7 +224,7 @@ name="dhcpIpLow" variableName="dhcp_range_low" alignement="Fill" - fillScript="__WIZ_HOME__/dhcp_wizard/scripts/compute_range1.sh" + fillScript="__WIZ_HOME__/dhcp_wizard/compute_range1.sh" helpText="Lowest IP Address:" guiType="textfield" editable="true" @@ -241,7 +241,7 @@ name="dhcpIpHigh" variableName="dhcp_range_high" alignement="Fill" - fillScript="__WIZ_HOME__/dhcp_wizard/scripts/compute_range2.sh" + fillScript="__WIZ_HOME__/dhcp_wizard/compute_range2.sh" helpText="Highest IP address:" guiType="textfield" editable="true" @@ -302,7 +302,7 @@ <Page helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-dhcp.html" name="doit" - func="do_it" + jumpScript="__WIZ_HOME__/dhcp_wizard/do_it_dhcp.sh" nextButtonText="Configure" executionLevel="NORMAL" nextFinish="false" |