From 573f2ba6c568b58396a4d0c367c5474449ad7e38 Mon Sep 17 00:00:00 2001 From: hasufell Date: Wed, 19 Aug 2015 21:05:45 +0200 Subject: [PATCH] Be less verbose --- etc/portage/postsync.d/sync_dtd | 4 ++-- etc/portage/postsync.d/sync_glsa | 4 ++-- etc/portage/postsync.d/sync_herds_xml | 2 +- etc/portage/postsync.d/sync_news | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/etc/portage/postsync.d/sync_dtd b/etc/portage/postsync.d/sync_dtd index 877a47a..c9f9def 100755 --- a/etc/portage/postsync.d/sync_dtd +++ b/etc/portage/postsync.d/sync_dtd @@ -7,8 +7,8 @@ source /etc/portage/util-functions.sh DTDDIR="${PORTDIR}"/metadata/dtd ebegin "Updating DTDs" if [[ -e ${DTDDIR} ]]; then - git -C "${DTDDIR}" pull --ff + git -C "${DTDDIR}" pull -q --ff else - git clone https://anongit.gentoo.org/git/data/dtd.git "${DTDDIR}" + git clone -q https://anongit.gentoo.org/git/data/dtd.git "${DTDDIR}" fi eend "$?" diff --git a/etc/portage/postsync.d/sync_glsa b/etc/portage/postsync.d/sync_glsa index 9596959..d463fcb 100755 --- a/etc/portage/postsync.d/sync_glsa +++ b/etc/portage/postsync.d/sync_glsa @@ -7,8 +7,8 @@ source /etc/portage/util-functions.sh GLSADIR="${PORTDIR}"/metadata/glsa ebegin "Updating GLSAs" if [[ -e ${GLSADIR} ]]; then - git -C "${GLSADIR}" pull --ff + git -C "${GLSADIR}" pull -q --ff else - git clone https://anongit.gentoo.org/git/data/glsa.git "${GLSADIR}" + git clone -q https://anongit.gentoo.org/git/data/glsa.git "${GLSADIR}" fi eend "$?" diff --git a/etc/portage/postsync.d/sync_herds_xml b/etc/portage/postsync.d/sync_herds_xml index 3ac1ba2..a19888e 100755 --- a/etc/portage/postsync.d/sync_herds_xml +++ b/etc/portage/postsync.d/sync_herds_xml @@ -5,5 +5,5 @@ source /etc/init.d/functions.sh source /etc/portage/util-functions.sh ebegin "Updating herds.xml" -wget -O "${PORTDIR}"/metadata/herds.xml https://api.gentoo.org/packages/herds.xml +wget -q -O "${PORTDIR}"/metadata/herds.xml https://api.gentoo.org/packages/herds.xml eend $? diff --git a/etc/portage/postsync.d/sync_news b/etc/portage/postsync.d/sync_news index 73241e9..4466bcb 100755 --- a/etc/portage/postsync.d/sync_news +++ b/etc/portage/postsync.d/sync_news @@ -7,9 +7,9 @@ source /etc/portage/util-functions.sh NEWSDIR="${PORTDIR}"/metadata/news ebegin "Updating news items" if [[ -e ${NEWSDIR} ]]; then - git -C "${NEWSDIR}" pull --ff + git -C "${NEWSDIR}" pull -q --ff else - git clone https://anongit.gentoo.org/git/proj/gentoo-news.git "${NEWSDIR}" + git clone -q https://anongit.gentoo.org/git/proj/gentoo-news.git "${NEWSDIR}" fi eend_die $?