summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakauth
blob: 939b57c0cf14ac593ca8b3a8813aee0a4f7310fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/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 any;
use network;

my $netc = {};
my $intf = {};
network::read_all_conf('', $netc, $intf);

my $in = 'interactive'->vnew('su');


my $authentication = {}; # TODO

my $authentication_kind = any::authentication2authentication_kind($authentication);

main:
$in->ask_from('', '', 
	      [ 
	       { label => N("Authentication"), val => \$authentication_kind, list => [ any::authentication_kinds() ], format => \&any::authentication_kind2description },
	      ]) or $in->exit;

any::ask_authentification_parameters($in, $netc, $authentication, $authentication_kind) or goto main;

eval { any::set_authentication($in, $netc, $authentication, sub { my ($f) = @_; $f->() }) };
if (my $err = $@) {
    $in->ask_warn(N("Error"), formatError($err));
    goto main;
}


$in->exit;