summaryrefslogtreecommitdiffstats
path: root/Wiztemplate.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Wiztemplate.pm')
-rwxr-xr-xWiztemplate.pm91
1 files changed, 91 insertions, 0 deletions
diff --git a/Wiztemplate.pm b/Wiztemplate.pm
new file mode 100755
index 00000000..f87421ad
--- /dev/null
+++ b/Wiztemplate.pm
@@ -0,0 +1,91 @@
+#!/usr/bin/perl
+
+# Drakwizard
+
+# Copyright (C) 2002 Arnaud Desmons <adesmons@mandrakesoft.com>
+# Copyright (C) 2003 Florent Villard <warly@mandrakesoft.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+package Wiztemplate;
+use strict;
+
+use common;
+use MDK::Wizard::IFCFG;
+
+my $wiz = new Wizcommon;
+
+my $o = {
+ name => N("configuration wizard"),
+ var => {
+ ip1 => '',
+ ip2 => ''
+ },
+ needed_packages => [],
+ defaultimage => $ENV{__WIZ_HOME__},
+ };
+
+$o->{pages} = {
+ welcome => {
+ name => "\n\n" . "\n\n",
+ no_back => 1,
+ next => 'config'
+ },
+ confige => {
+ name => "\n\n" . "\n\n",
+ pre => sub {
+ $o->{var}{ip1} ||= f1();
+ $o->{var}{ip2} ||= f2();
+ },
+ post => \&check,
+ data => [
+ { label => '', val => \$o->{var}{ip1} },
+ { label => '', val => \$o->{var}{ip2} },
+ ],
+ next => 'summary'
+ },
+ warning => {
+ name => N("Warning.") . "\n\n",
+ next => 'summary'
+ },
+ error => {
+ name => N("Error.") . "\n\n",
+ next => 'config'
+ },
+ summary => {
+ name => "\n\n" . "\n\n",
+ data => [
+ { label => '', val_ref => \$o->{var}{ip1} },
+ { label => '' },
+ { label => '', val_ref => \$o->{var}{ip2} },
+ ],
+ post => \&do_it,
+ next => 'end'
+ },
+ end => {
+ name => N("Congratulations") . "\n\n",
+ end => 1,
+ next => 0
+ },
+};
+
+sub new {
+ my ($class) = @_;
+ bless {
+ o => $o,
+ }, $class;
+}
+
+1;