summaryrefslogtreecommitdiffstats
path: root/perl-install/services.pm
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2013-09-03 00:17:44 +0200
committerNicolas Lécureuil <neoclust@mageia.org>2013-09-03 00:18:01 +0200
commitd5d76ab1b86bd3db9f253757ad8e3f846eb3fe90 (patch)
treea3d28b0fce63c84ad55a5302f679efe3d639c8d3 /perl-install/services.pm
parente93323fb87ad1c4cb21d0a1bd18ba3be5f851d79 (diff)
downloaddrakx-d5d76ab1b86bd3db9f253757ad8e3f846eb3fe90.tar
drakx-d5d76ab1b86bd3db9f253757ad8e3f846eb3fe90.tar.gz
drakx-d5d76ab1b86bd3db9f253757ad8e3f846eb3fe90.tar.bz2
drakx-d5d76ab1b86bd3db9f253757ad8e3f846eb3fe90.tar.xz
drakx-d5d76ab1b86bd3db9f253757ad8e3f846eb3fe90.zip
Fix path after UsrMove
Diffstat (limited to 'perl-install/services.pm')
-rw-r--r--perl-install/services.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm
index 5df0c626c..c7260d549 100644
--- a/perl-install/services.pm
+++ b/perl-install/services.pm
@@ -127,7 +127,7 @@ xinetd => N_("Starts other deamons on demand."),
if ($s) {
$s = translate($s);
} else {
- my $file = "$::prefix/lib/systemd/system/$name.service";
+ my $file = "$::prefix/usr/lib/systemd/system/$name.service";
if (-e $file) {
$s = cat_($file);
$s = $s =~ /^Description=(.*)/mg ? $1 : '';