From ead3bd93e9bdec8b6cf965e6b494ea131afcf4ae Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 9 Jan 2016 20:26:14 +0100 Subject: fix warnings about unknown kernel options (when parsing drakx options) we don't use "pass_through" Getopt option so that we do get warnings about wrongly named options --- perl-install/install/NEWS | 2 ++ perl-install/install/install2.pm | 3 +++ 2 files changed, 5 insertions(+) (limited to 'perl-install') diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6e0ad4620..31aa56064 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- do not warn about kernel options when parsing drakx options + Version 17.13 - 9 January 2016 - regressions from 17.11: diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index 53de2f139..090bcd234 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -581,6 +581,9 @@ sub parse_args { askmedia => \$o->{askmedia}, restore => \$::isRestore, 'compsslistlevel=s' => \$o->{compssListLevel}, + + # to ignore: + 'BOOT_IMAGE|quiet|resume|root|splash' => sub {}, ); ($cfg, $patch); -- cgit v1.2.1