aboutsummaryrefslogtreecommitdiffstats
path: root/map/index.php
Commit message (Expand)AuthorAgeFilesLines
* Revert "Updated Estonian translation"Thomas Backlund2014-10-121-0/+4
* Updated Estonian translationMarek Laane2014-10-121-4/+0
* site mapRomain d'Alverny2012-05-111-0/+4
href='/software/drakx-backup-do-not-use/tree/perl-install/standalone/drakxservices?id=ee6df694f51b1c805bab573f981c1d054122010d'>treecommitdiffstats
path: root/perl-install/standalone/drakxservices
blob: 91317d1f45321d4c5d48c3e32da9728eaf8445a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl

use strict;
use lib qw(/usr/lib/libDrakX);

use standalone;     #- warning, standalone must be loaded very first, for 'explanations'

use common;
use interactive;
use services;
use log;

$ugtk2::wm_icon = "/usr/share/mcc/themes/default/service-mdk.png";
my $in = 'interactive'->vnew('su');
begin:
my $l = services::ask($in);
services::doit($in, $l) if $l;
$in->exit(0);