From: "Liam McLoughlin" <hexxeh@hexxeh.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gentoaster:master commit in: /
Date: Tue, 14 Jun 2011 20:44:17 +0000 (UTC) [thread overview]
Message-ID: <841df9efa3b2dc065a269ce943f87a8f4de83000.hexxeh@gentoo> (raw)
commit: 841df9efa3b2dc065a269ce943f87a8f4de83000
Author: Liam McLoughlin <hexxeh <AT> hexxeh <DOT> net>
AuthorDate: Tue Jun 14 20:44:05 2011 +0000
Commit: Liam McLoughlin <hexxeh <AT> hexxeh <DOT> net>
CommitDate: Tue Jun 14 20:44:05 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoaster.git;a=commit;h=841df9ef
Fixed Stage3 and Portage download
---
create_image.sh | 21 ++++++++++++---------
1 files changed, 12 insertions(+), 9 deletions(-)
diff --git a/create_image.sh b/create_image.sh
index b12ac78..e1e24c3 100755
--- a/create_image.sh
+++ b/create_image.sh
@@ -15,6 +15,9 @@ DEFAULT_USERNAME="gentoo"
DEFAULT_PASSWORD="g3nt00"
LOG_FILE="`pwd`/log.txt"
+STAGE3_URL="http://distfiles.gentoo.org/releases/x86/current-stage3/stage3-i486-20110607.tar.bz2"
+PORTAGE_URL="http://distfiles.gentoo.org/snapshots/portage-latest.tar.bz2"
+
echo "Starting log at ${LOG_FILE}..."
echo "" > ${LOG_FILE}
@@ -86,19 +89,19 @@ cd rootfs
# Setup Gentoo
echo "Downloading Stage 3"
-#wget http://gentoo.virginmedia.com/releases/x86/current-stage3/stage3-i686-20110315.tar.bz2 -O stage3.tar.bz2 &>> ${LOG_FILE}
+wget ${STAGE3_URL} -O ../stage3.tar.bz2 &>> ${LOG_FILE}
echo "Extracting Stage 3"
tar jxf ../stage3.tar.bz2 &>> ${LOG_FILE}
-#rm stage3.tar.bz2
+rm stage3.tar.bz2
echo "Downloading Portage snapshot"
cd usr
-#wget http://gentoo.virginmedia.com/snapshots/portage-latest.tar.bz2 &>> ${LOG_FILE}
+wget ${PORTAGE_URL} -o ../../portage-latest.tar.bz2 &>> ${LOG_FILE}
echo "Extracting Portage snapshot"
tar jxf ../../portage-latest.tar.bz2 &>> ${LOG_FILE}
-#rm portage-latest.tar.bz2
+rm portage-latest.tar.bz2
echo "Setting up chroot"
cd ..
@@ -152,12 +155,12 @@ linux32 chroot . /bin/bash -c "echo 'root:${ROOT_PASSWORD}' | chpasswd" &>> ${LO
echo "Installing dhcpcd"
linux32 chroot . emerge dhcpcd &>> ${LOG_FILE}
-echo "Installing Perl"
-linux32 chroot . emerge perl &>> ${LOG_FILE}
-linux32 chroot . perl-cleaner --all &>> ${LOG_FILE}
+#echo "Installing Perl"
+#linux32 chroot . emerge perl &>> ${LOG_FILE}
+#linux32 chroot . perl-cleaner --all &>> ${LOG_FILE}
-echo "Installing GNOME"
-linux32 chroot . emerge gnome &>> ${LOG_FILE}
+#echo "Installing GNOME"
+#linux32 chroot . emerge gnome &>> ${LOG_FILE}
echo "Adding default user"
linux32 chroot . useradd -g users -G lp,wheel,audio,cdrom,portage -m ${DEFAULT_USERNAME}
next reply other threads:[~2011-06-14 20:44 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-14 20:44 Liam McLoughlin [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-08-23 21:29 [gentoo-commits] proj/gentoaster:master commit in: / Liam McLoughlin
2011-08-19 13:09 Liam McLoughlin
2011-08-15 2:24 Liam McLoughlin
2011-08-15 2:00 Liam McLoughlin
2011-08-15 1:54 Liam McLoughlin
2011-08-14 15:46 Liam McLoughlin
2011-08-12 23:18 Liam McLoughlin
2011-08-12 23:17 Liam McLoughlin
2011-08-12 23:17 Liam McLoughlin
2011-08-11 20:31 [gentoo-commits] proj/gentoaster:webui " Liam McLoughlin
2011-08-12 23:18 ` [gentoo-commits] proj/gentoaster:master " Liam McLoughlin
2011-07-15 20:41 [gentoo-commits] proj/gentoaster:webui " Liam McLoughlin
2011-08-12 23:17 ` [gentoo-commits] proj/gentoaster:master " Liam McLoughlin
2011-07-11 14:00 Liam McLoughlin
2011-07-10 23:53 Liam McLoughlin
2011-07-08 22:41 Liam McLoughlin
2011-07-08 18:47 Liam McLoughlin
2011-07-08 18:35 Liam McLoughlin
2011-07-08 18:27 Liam McLoughlin
2011-07-08 17:27 Liam McLoughlin
2011-07-08 2:45 Liam McLoughlin
2011-06-16 1:01 Liam McLoughlin
2011-06-16 1:01 Liam McLoughlin
2011-06-14 21:28 Liam McLoughlin
2011-06-14 21:03 Liam McLoughlin
2011-06-08 0:06 Liam McLoughlin
2011-06-05 23:32 Liam McLoughlin
2011-06-05 23:32 Liam McLoughlin
2011-06-05 23:32 Liam McLoughlin
2011-06-04 3:47 Liam McLoughlin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=841df9efa3b2dc065a269ce943f87a8f4de83000.hexxeh@gentoo \
--to=hexxeh@hexxeh.net \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox