summaryrefslogtreecommitdiffstats
path: root/bin/drakroam
blob: 0f41badeca2b189d9035b58a6670a0f15af0c475 (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
#!/usr/bin/perl

# drakroam: wireless network roaming GUI
# Austin Acton, 2004 <austin@mandriva.org>
# Olivier Blin, 2005-2006 <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 common;
use network::drakroam;
use network::monitor;

my %args = map { if_(/^--(\w+)=(.*)$/ && member($1, qw(ap interface)), $1 => $2) } @ARGV;

require_root_capability();

my $in = 'interactive'->vnew;
my $net = {};
network::network::read_net_conf($net);
my $dbus;
eval { $dbus = dbus_object::system_bus() };
eval { $net->{monitor} = network::monitor->new($dbus) } if $dbus;

network::drakroam::main($in, $net, $dbus, $args{interface}, $args{ap});