diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-01-07 21:25:05 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-05-28 11:54:11 +0100 |
commit | edb06c7359dc3dadccd0ab2977b59588d32b5a8a (patch) | |
tree | f69a5d4751d9c4eaf06aaf6bc1c2b284213f268a /perl-install | |
parent | 4a67c3c0b6ba4ee1a8ae782db10396756e3ae426 (diff) | |
download | drakx-edb06c7359dc3dadccd0ab2977b59588d32b5a8a.tar drakx-edb06c7359dc3dadccd0ab2977b59588d32b5a8a.tar.gz drakx-edb06c7359dc3dadccd0ab2977b59588d32b5a8a.tar.bz2 drakx-edb06c7359dc3dadccd0ab2977b59588d32b5a8a.tar.xz drakx-edb06c7359dc3dadccd0ab2977b59588d32b5a8a.zip |
Remove leftover debug message.
(cherry picked from commit b86e6150e694517213467045139b1badbdba5552)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/services.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm index e77d07511..f76b29b86 100644 --- a/perl-install/services.pm +++ b/perl-install/services.pm @@ -368,7 +368,6 @@ sub _systemd_services() { log::explanations("Detected systemd running. Using systemctl introspection."); # even if systemd is not running, we can detect status of shorewell service which is not wanted by: my @opts = $::isInstall ? 'list-unit-files' : qw(--all list-units); - print "chroot $::prefix /bin/systemctl --no-legend --no-pager --full @opts"; foreach (run_program::rooted_get_stdout($::prefix, '/bin/systemctl', '--no-legend', '--no-pager', '--full', @opts)) { my ($name) = m!^(\S+)\.service\s+loaded!; ($name) = m!^(\S+)\.service\s+enabled! if $::isInstall && !$name; |