aboutsummaryrefslogtreecommitdiffstats
path: root/modules/services/servicemanager
blob: 670abbe08b2990ce929d80d812bbac7dfec62ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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 AdminPanel::Shared;
use AdminPanel::Services::services;
use log;

use yui;

my $wm_icon = "/usr/share/mcc/themes/default/service-mdk.png";

yui::YUI::app()->setApplicationTitle(N("Services and daemons"));
yui::YUI::app()->setApplicationIcon($wm_icon);

AdminPanel::Services::services::servicePanel();