summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakauth
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2004-06-15 16:50:22 +0000
committerMystery Man <unknown@mandriva.org>2004-06-15 16:50:22 +0000
commit8ea9beca90c410e12593fedfb6e741dbdf8795d0 (patch)
tree544a377d0ea57462110009fbbbfd14473390e2a1 /perl-install/standalone/drakauth
parentb5dc638815c772056e07cd013f5b1674900456d5 (diff)
downloaddrakx-topic/mandrakesoft.tar
drakx-topic/mandrakesoft.tar.gz
drakx-topic/mandrakesoft.tar.bz2
drakx-topic/mandrakesoft.tar.xz
drakx-topic/mandrakesoft.zip
This commit was manufactured by cvs2svn to create branch 'mandrakesoft'.topic/mandrakesoft
Diffstat (limited to 'perl-install/standalone/drakauth')
-rwxr-xr-xperl-install/standalone/drakauth41
1 files changed, 0 insertions, 41 deletions
diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth
deleted file mode 100755
index f091a3000..000000000
--- a/perl-install/standalone/drakauth
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/perl
-
-use lib qw(/usr/lib/libDrakX);
-
-use standalone; #- warning, standalone must be loaded very first, for 'explanations'
-
-use common;
-use interactive;
-use authentication;
-use network::network;
-
-my $netc = {};
-my $intf = {};
-read_all_conf('', $netc, $intf);
-
-my $in = 'interactive'->vnew('su');
-
-
-my $authentication = {}; # TODO
-
-my $kind = authentication::to_kind($authentication);
-
-main:
-$in->ask_from('', '',
- [
- { label => N("Authentication"), val => \$kind, list => [ authentication::kinds() ], format => \&authentication::kind2description },
- ]) or $in->exit;
-
-authentication::ask_parameters($in, $netc, $authentication, $kind) or goto main;
-
-eval {
- authentication::set($in, $netc, $authentication, sub { my ($f) = @_; $f->() });
- network::network::write_conf("$::prefix/etc/sysconfig/network", $netc);
-};
-if (my $err = $@) {
- $in->ask_warn(N("Error"), formatError($err));
- goto main;
-}
-
-
-$in->exit;