From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QWam1-0000j5-0S for garchives@archives.gentoo.org; Tue, 14 Jun 2011 21:03:45 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74F4A1C1DB; Tue, 14 Jun 2011 21:03:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4109F1C1DC for ; Tue, 14 Jun 2011 21:03:37 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7E991B401C for ; Tue, 14 Jun 2011 21:03:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id BFE608003C for ; Tue, 14 Jun 2011 21:03:34 +0000 (UTC) From: "Liam McLoughlin" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Liam McLoughlin" Message-ID: <840844d190b8f6d26e637c9ca08329bd100da779.hexxeh@gentoo> Subject: [gentoo-commits] proj/gentoaster:master commit in: / X-VCS-Repository: proj/gentoaster X-VCS-Files: create_image.sh X-VCS-Directories: / X-VCS-Committer: hexxeh X-VCS-Committer-Name: Liam McLoughlin X-VCS-Revision: 840844d190b8f6d26e637c9ca08329bd100da779 Date: Tue, 14 Jun 2011 21:03:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 2ccf51944763d3afaf4495d01522d817 commit: 840844d190b8f6d26e637c9ca08329bd100da779 Author: Liam McLoughlin hexxeh net> AuthorDate: Tue Jun 14 21:03:23 2011 +0000 Commit: Liam McLoughlin hexxeh net> CommitDate: Tue Jun 14 21:03:23 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoaster.gi= t;a=3Dcommit;h=3D840844d1 Fixed typo in the wget for Portage --- create_image.sh | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/create_image.sh b/create_image.sh index e1e24c3..64289f9 100755 --- a/create_image.sh +++ b/create_image.sh @@ -1,5 +1,6 @@ #!/bin/bash =20 +echo $0 IMAGE_BASENAME=3D"${1}" IMAGE_NAME=3D"${IMAGE_BASENAME}.image" IMAGE_OUT=3D"${IMAGE_BASENAME}.vdi" @@ -92,15 +93,15 @@ echo "Downloading Stage 3" wget ${STAGE3_URL} -O ../stage3.tar.bz2 &>> ${LOG_FILE} =20 echo "Extracting Stage 3" -tar jxf ../stage3.tar.bz2 &>> ${LOG_FILE} +tar jvxf ../stage3.tar.bz2 &>> ${LOG_FILE} rm stage3.tar.bz2 =20 echo "Downloading Portage snapshot" cd usr -wget ${PORTAGE_URL} -o ../../portage-latest.tar.bz2 &>> ${LOG_FILE} +wget ${PORTAGE_URL} -O ../../portage-latest.tar.bz2 &>> ${LOG_FILE} =20 echo "Extracting Portage snapshot" -tar jxf ../../portage-latest.tar.bz2 &>> ${LOG_FILE} +tar jvxf ../../portage-latest.tar.bz2 &>> ${LOG_FILE} rm portage-latest.tar.bz2 =20 echo "Setting up chroot"