From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1SFaqW-00010g-2p for mharc-grub-devel@gnu.org; Wed, 04 Apr 2012 20:46:40 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50564) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFaqS-0000zx-5M for grub-devel@gnu.org; Wed, 04 Apr 2012 20:46:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFaqN-0005K2-Rx for grub-devel@gnu.org; Wed, 04 Apr 2012 20:46:35 -0400 Received: from mail-bk0-f41.google.com ([209.85.214.41]:52829) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFaqN-0005Jm-LF for grub-devel@gnu.org; Wed, 04 Apr 2012 20:46:31 -0400 Received: by bkwq16 with SMTP id q16so1008907bkw.0 for ; Wed, 04 Apr 2012 17:46:26 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:x-gm-message-state; bh=bAo1wxmJdZUMBpcTazi1HrBHmPTNHeEnuKFbHz/uZos=; b=Kf+RK5wAvNAcGFf2DaBynGmqJF11YlmAfgVwbcxCrrvujQ0MMIUJiOqM+RxveOV1nY yGO4DnDxjovC6AxrpK/1r5r3g0PLJyg0I8F+o7UqF/G1MlMEgn8PAKr9YJAqwoJr7DbV s3ToJ5uAVdqkofFWLTduJA2X8PB+VKzmDOL/fQwlqWU1OY9vRE1wGykjrMEj3nEsu36T mYBhu8DfFk9lUZPNKe/rgRezRfDhnutob6F1eOjxhkRxN8CygL0wL7E7+Uzl9kdJLTCK jCAuMIUIG7OqIR/e9RNHVA+OxiH5qRs7e/ICtHYbW0qZaSlbRPcpXSo6qFr7moHUfluV RF+Q== Received: by 10.204.149.204 with SMTP id u12mr229183bkv.45.1333586786463; Wed, 04 Apr 2012 17:46:26 -0700 (PDT) Received: from [172.16.15.177] (mail.excitor.com. [62.243.244.130]) by mx.google.com with ESMTPS id p19sm5169377bka.1.2012.04.04.17.46.08 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 04 Apr 2012 17:46:19 -0700 (PDT) Message-ID: <4F7CEB4F.5040307@kiilerich.com> Date: Thu, 05 Apr 2012 02:46:07 +0200 From: Mads Kiilerich User-Agent: Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120329 Thunderbird/11.0.1 MIME-Version: 1.0 To: The development of GNU GRUB Subject: [PATCH] Files left by the rpm package manager should be considered garbage Content-Type: multipart/mixed; boundary="------------080002010103000301090100" X-Gm-Message-State: ALoCoQkZgOSPweclYzbaxdJVRdNcHcMnduCJ0rhHGzR6Fx8oK6GD5LPm3G5KGQnEchf4naebYyvB X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.214.41 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Apr 2012 00:46:38 -0000 This is a multi-part message in MIME format. --------------080002010103000301090100 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Files left by the rpm package manager should be considered garbage too. Especially *.rpmnew and *.rpmsave could cause unexpected behaviour in /etc/grub.d . 2012-04-05 Mads Kiilerich * grub-mkconfig_lib.in: ignore *.rpm*. --------------080002010103000301090100 Content-Type: text/x-patch; name="rpm-garbage.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="rpm-garbage.patch" === modified file 'util/grub-mkconfig_lib.in' --- util/grub-mkconfig_lib.in 2012-03-19 15:27:59 +0000 +++ util/grub-mkconfig_lib.in 2012-04-03 13:12:01 +0000 @@ -177,6 +177,7 @@ if test -f "$1" ; then case "$1" in *.dpkg-*) return 1 ;; # debian dpkg + *.rpm*) return 1 ;; README*|*/README*) return 1 ;; # documentation esac else --------------080002010103000301090100--