From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3ABA91382C5 for ; Thu, 26 Apr 2018 10:09:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51EF3E07A7; Thu, 26 Apr 2018 10:09:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28AF4E07A7 for ; Thu, 26 Apr 2018 10:09:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56462335C30 for ; Thu, 26 Apr 2018 10:09:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7B27261 for ; Thu, 26 Apr 2018 10:08:58 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1524737199.b79edd9d0a12d0bb49217989bad58c7556164166.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/etc-update X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b79edd9d0a12d0bb49217989bad58c7556164166 X-VCS-Branch: master Date: Thu, 26 Apr 2018 10:08:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a18f0069-ed84-479c-809f-07a9fc0cf82c X-Archives-Hash: 31172202581ac84323b323ad9361944d commit: b79edd9d0a12d0bb49217989bad58c7556164166 Author: Tomáš Chvátal gmail com> AuthorDate: Thu Apr 26 10:06:39 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Apr 26 10:06:39 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b79edd9d etc-update: include opensuse-tumbleweed in suse OS_FAMILY bin/etc-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/etc-update b/bin/etc-update index b15cceb4c..d5f5febb7 100755 --- a/bin/etc-update +++ b/bin/etc-update @@ -35,7 +35,7 @@ get_config() { OS_RELEASE_ID=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | cut -d'=' -f2 | sed -e 's/"//g') case $OS_RELEASE_ID in - suse|opensuse|opensuse-leap) OS_FAMILY='suse' NEW_EXT='rpmnew';; + suse|opensuse|opensuse-leap|opensuse-tumbleweed) OS_FAMILY='suse' NEW_EXT='rpmnew';; arch|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';; *) OS_FAMILY='gentoo' ;; esac