blob: 7da798c4c3f854ae0eff2f8296cd388188ed38f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/perl
# Olivier Blin, 2007 <oblin@mandriva.com>
# Licensed under the GPL
use strict;
use lib qw(/usr/lib/libDrakX);
# i18n: IMPORTANT: to get correct namespace (drakx-net instead of libDrakX)
BEGIN { unshift @::textdomains, 'drakx-net' }
use standalone;
use network::network;
use network::netcenter;
my $in = 'interactive'->vnew('su');
my $net = {};
network::network::read_net_conf($net);
network::netcenter::main($in, $net);
|