From 4cec2294f39e937980cfe92b50c454f9abe583ae Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 8 Mar 2013 20:57:19 +0000 Subject: [PATCH] Get rid of createrepo warnings --- update-archive/update-yum-archive.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update-archive/update-yum-archive.sh b/update-archive/update-yum-archive.sh index a1a3fbd..4983186 100755 --- a/update-archive/update-yum-archive.sh +++ b/update-archive/update-yum-archive.sh @@ -123,7 +123,10 @@ echo "Updating repository meta:" for rdir in ${dirs_to_upd}; do echo "Section ${rdir}" if test -d $rdir && ls -A $rdir; then - createrepo --update ${rdir} + # Get rid of createrepo warnings + # https://bugs.launchpad.net/ubuntu/+source/createrepo/+bug/530015 + createrepo --update ${rdir} 2>&1 | + grep -v DeprecationWarning:|grep -v ' import' if test -f ${rdir}/repodata/repomd.xml.asc; then rm ${rdir}/repodata/repomd.xml.asc fi -- 1.7.10.4