diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-11-23 20:43:56 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-11-23 20:43:56 +0100 |
commit | 62bda69f02ed65a1d3d1561178d799f38a5a3d5a (patch) | |
tree | ab2238ce2621df192ba96302e6d077293f19481c /perl-install | |
parent | c7311496756920a24ea3b88cbc0fb3168bb46131 (diff) | |
download | drakx-62bda69f02ed65a1d3d1561178d799f38a5a3d5a.tar drakx-62bda69f02ed65a1d3d1561178d799f38a5a3d5a.tar.gz drakx-62bda69f02ed65a1d3d1561178d799f38a5a3d5a.tar.bz2 drakx-62bda69f02ed65a1d3d1561178d799f38a5a3d5a.tar.xz drakx-62bda69f02ed65a1d3d1561178d799f38a5a3d5a.zip |
recognize e17/lxde/mate/razor (mga#12495, Luc Menut)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/pkgs.pm | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index ef911634d..c463d467e 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- harddrake: + o recognize e17/lxde/mate/razor (mga#12495, Luc Menut) + Version 16.44 - 23 October 2014 - fix drakxservices not showing all services due to systemctl output change diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index afc5cc784..e1e1b3725 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -221,6 +221,11 @@ sub detect_hardware_packages { my @ignore_flags = $::isInstall ? () : ( if_(!$do_pkgs->is_installed('task-kde4-minimal'), "CAT_KDE"), if_(!$do_pkgs->is_installed('task-gnome-minimal'), "CAT_GNOME"), + if_(!$do_pkgs->is_installed('task-cinnamon-minimal'), "CAT_CINNAMON"), + if_(!$do_pkgs->is_installed('task-mate-minimal'), "CAT_MATE"), + if_(!$do_pkgs->is_installed('task-xfce-minimal'), "CAT_XFCE"), + if_(!$do_pkgs->is_installed('task-e17-minimal'), "CAT_E17"), + if_(!$do_pkgs->is_installed('task-razorqt'), "CAT_RAZOR"), ); ( ($::isInstall ? () : detect_rpmsrate_hardware_packages($o_match_all_hardware, \@ignore_flags)), |