Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Thu, 26 Apr 2018 10:09:03
Message-Id: 1524737199.b79edd9d0a12d0bb49217989bad58c7556164166.zmedico@gentoo
1 commit: b79edd9d0a12d0bb49217989bad58c7556164166
2 Author: Tomáš Chvátal <tomas.chvatal <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 26 10:06:39 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 10:06:39 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b79edd9d
7
8 etc-update: include opensuse-tumbleweed in suse OS_FAMILY
9
10 bin/etc-update | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/bin/etc-update b/bin/etc-update
14 index b15cceb4c..d5f5febb7 100755
15 --- a/bin/etc-update
16 +++ b/bin/etc-update
17 @@ -35,7 +35,7 @@ get_config() {
18 OS_RELEASE_ID=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | cut -d'=' -f2 | sed -e 's/"//g')
19
20 case $OS_RELEASE_ID in
21 - suse|opensuse|opensuse-leap) OS_FAMILY='suse' NEW_EXT='rpmnew';;
22 + suse|opensuse|opensuse-leap|opensuse-tumbleweed) OS_FAMILY='suse' NEW_EXT='rpmnew';;
23 arch|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';;
24 *) OS_FAMILY='gentoo' ;;
25 esac