diff options
author | Arnaud Desmons <adesmons@mandriva.com> | 2002-09-03 15:12:10 +0000 |
---|---|---|
committer | Arnaud Desmons <adesmons@mandriva.com> | 2002-09-03 15:12:10 +0000 |
commit | cbec6a11b4b0f12cfd025e7ac424e8aa67b4349d (patch) | |
tree | f6b0d25dd13d0d5ead8ed964b3a8edb5eac5af79 /client_wizard/scripts/Clientconf.pm | |
parent | 153426e066bf73504b59483727816bc8339616b9 (diff) | |
download | drakwizard-cbec6a11b4b0f12cfd025e7ac424e8aa67b4349d.tar drakwizard-cbec6a11b4b0f12cfd025e7ac424e8aa67b4349d.tar.gz drakwizard-cbec6a11b4b0f12cfd025e7ac424e8aa67b4349d.tar.bz2 drakwizard-cbec6a11b4b0f12cfd025e7ac424e8aa67b4349d.tar.xz drakwizard-cbec6a11b4b0f12cfd025e7ac424e8aa67b4349d.zip |
fill func
Diffstat (limited to 'client_wizard/scripts/Clientconf.pm')
-rw-r--r-- | client_wizard/scripts/Clientconf.pm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/client_wizard/scripts/Clientconf.pm b/client_wizard/scripts/Clientconf.pm index 6c567a16..44a72482 100644 --- a/client_wizard/scripts/Clientconf.pm +++ b/client_wizard/scripts/Clientconf.pm @@ -11,6 +11,15 @@ my $o = DrakconnectConf->new(); my $wiz_domain_name = $o->get("DomainName"); my $wiz_ip_server = $o->get_from_known_dev("IP"); +sub name { + $o->get("SystemName"); +} + +sub ip { + $wiz_ip_server; +} + + sub up_serial { my ($file) = @_; @@ -43,7 +52,7 @@ sub test { !$s_trunc and return 1; ($s_trunc != $sc_trunc) and return 1; ($dc == $ds || $dc < 0 || $dc > 255) and return 1; - return 10; + 10; } sub do_it { |