From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1SFxMb-000375-7K for mharc-grub-devel@gnu.org; Thu, 05 Apr 2012 20:49:17 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFxMX-00035E-Jf for grub-devel@gnu.org; Thu, 05 Apr 2012 20:49:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFxMV-0003sP-P4 for grub-devel@gnu.org; Thu, 05 Apr 2012 20:49:13 -0400 Received: from mail-bk0-f41.google.com ([209.85.214.41]:43593) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFxMV-0003sL-I2 for grub-devel@gnu.org; Thu, 05 Apr 2012 20:49:11 -0400 Received: by bkwq16 with SMTP id q16so2080207bkw.0 for ; Thu, 05 Apr 2012 17:49:08 -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=kfCZJorqvGPbExe5hjEtK3S9QVVsDTCoikCDI9OVXpk=; b=U8D+AP2krXct4Cw7q1yhZ7DxIaTtkZgjdzJ22VDXoulzISMJT8QWu60d0iOx5vUv96 u6Gn5oG3viH+/7g8Hlmd756gY0qXQR7YdcZRUL5fzQ1Gzp2XyjjeQ8P9m+ChuMHc64u1 uJCWZyj5TbJsF/KgnX3XIAMz8AhZ7NvaWODfLTJhonMEm4v3f261HwppPKBxVtJ9NUdv e0obWsEmjMj7RzvVRC+SKlXm+nO84xR9s6leJ4+r0HdwvrLmRxa3QhlXwKik3gr0BhJe pq92wOHLJ5MtmeaN66v8pcIiqx2p0TUNdlR6Ou4mUd4aY4gTc8U/W4RD/knwR9fZ3zhY F6hg== Received: by 10.204.128.152 with SMTP id k24mr2141467bks.127.1333673348325; Thu, 05 Apr 2012 17:49:08 -0700 (PDT) Received: from [192.168.2.4] ([77.75.167.238]) by mx.google.com with ESMTPS id cy11sm11634601bkb.7.2012.04.05.17.49.06 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 05 Apr 2012 17:49:07 -0700 (PDT) Message-ID: <4F7E3D81.6030605@kiilerich.com> Date: Fri, 06 Apr 2012 02:49:05 +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 v2] Files left by the rpm package manager should be considered garbage Content-Type: multipart/mixed; boundary="------------030908080306040402080100" X-Gm-Message-State: ALoCoQmYP5rQFypGcf4NMqHJp8gMYDKGpouurCCGPoxvmOYm8GDr8+edG/Fu1bYVI1ob8qiJasfN 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: Fri, 06 Apr 2012 00:49:14 -0000 This is a multi-part message in MIME format. --------------030908080306040402080100 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit *.rpmnew and *.rpmsave files left by the rpm package manager should be considered garbage too - especially when found in /etc/grub.d . 2012-04-06 Mads Kiilerich * grub-mkconfig_lib.in: ignore *.rpmnew and *.rpmsave . --------------030908080306040402080100 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 + *.rpmsave|*.rpmnew) return 1 ;; README*|*/README*) return 1 ;; # documentation esac else --------------030908080306040402080100--