diff options
author | Colin Guthrie <colin@mageia.org> | 2012-04-24 20:10:33 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2012-04-24 20:10:33 +0000 |
commit | 71acd1b0d107928e6773d67dfed40f00f11713de (patch) | |
tree | fbc13d5a600e1b39f8a8a2c98a357eb307c14fca /perl-install | |
parent | 0abec508d455c3456a3f016da126c26c2888c64b (diff) | |
download | drakx-71acd1b0d107928e6773d67dfed40f00f11713de.tar drakx-71acd1b0d107928e6773d67dfed40f00f11713de.tar.gz drakx-71acd1b0d107928e6773d67dfed40f00f11713de.tar.bz2 drakx-71acd1b0d107928e6773d67dfed40f00f11713de.tar.xz drakx-71acd1b0d107928e6773d67dfed40f00f11713de.zip |
services: Whitespace
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/services.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm index 7acb5cdbf..73949c6f0 100644 --- a/perl-install/services.pm +++ b/perl-install/services.pm @@ -346,9 +346,9 @@ sub xinetd_services() { local $ENV{LANGUAGE} = 'C'; my @xinetd_services; foreach (run_program::rooted_get_stdout($::prefix, '/sbin/chkconfig', '--list', '--type', 'xinetd')) { - if (my ($xinetd_name, $on_off) = m!^\t(\S+):\s*(on|off)!) { - push @xinetd_services, [ $xinetd_name, $on_off eq 'on' ]; - } + if (my ($xinetd_name, $on_off) = m!^\t(\S+):\s*(on|off)!) { + push @xinetd_services, [ $xinetd_name, $on_off eq 'on' ]; + } } @xinetd_services; } |