Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Dziallas <sebastian@when.com>2009-08-18 21:08:30 (GMT)
committer Sebastian Dziallas <sebastian@when.com>2009-08-18 21:08:30 (GMT)
commit8d11d4b0c2bd506e80944ac188ddc58a06fba53b (patch)
tree6e4b0c96b0076aaaaa25761e6dbdd9c6c463a0e8
parentbe913182787451d1ed934a6fa721cc1740e09cc8 (diff)
switch to wget to circumvent issues with IPv6
-rw-r--r--soas-appliance.ks9
-rw-r--r--soas-base.ks1
-rw-r--r--soas-sugar.ks8
3 files changed, 8 insertions, 10 deletions
diff --git a/soas-appliance.ks b/soas-appliance.ks
index 1286569..38dcdc1 100644
--- a/soas-appliance.ks
+++ b/soas-appliance.ks
@@ -147,7 +147,6 @@ google-droid-serif-fonts
# duplicate functionality
-pinfo
-vorbis-tools
--wget
# lose the compat stuff
-compat*
@@ -248,11 +247,11 @@ mkdir -p $BUNDLES_DIR
cd $BUNDLES_DIR
for id in $ASLO ; do
- curl -L http://activities.sugarlabs.org/en-US/sugar/downloads/latest/$id > $id.xo
+ wget http://activities.sugarlabs.org/en-US/sugar/downloads/latest/$id
done
# get the script to install the activities
-curl -O http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/2d1057e6d8e74aecfa82c0b8e51a2c8d772a7923/install-activity.py
+wget http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/2d1057e6d8e74aecfa82c0b8e51a2c8d772a7923/install-activity.py
# pull sample content for the journal
PDFS="$PDFS south_america.pdf"
@@ -266,11 +265,11 @@ PDFS="$PDFS oceania.pdf"
PDFS="$PDFS southeast_asia.pdf"
for pdf in $PDFS ; do
- curl -O http://dev.sugarlabs.org/raw-attachment/ticket/840/$pdf
+ wget http://dev.sugarlabs.org/raw-attachment/ticket/840/$pdf
done
# get sample content setup script directly from git
-curl -O http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/8ad00566985860f9891aea714c74e5430e9c395d/copy-to-datastore.py
+wget http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/8ad00566985860f9891aea714c74e5430e9c395d/copy-to-datastore.py
chown -R 500:500 $BUNDLES_DIR
cd $WD
diff --git a/soas-base.ks b/soas-base.ks
index 3c4fe91..9344342 100644
--- a/soas-base.ks
+++ b/soas-base.ks
@@ -58,7 +58,6 @@ kernel
# duplicate functionality
-pinfo
-vorbis-tools
--wget
# lose the compat stuff
-compat*
diff --git a/soas-sugar.ks b/soas-sugar.ks
index d707dba..e60a9d1 100644
--- a/soas-sugar.ks
+++ b/soas-sugar.ks
@@ -120,11 +120,11 @@ mkdir -p $BUNDLES_DIR
cd $BUNDLES_DIR
for id in $ASLO ; do
- curl -L http://activities.sugarlabs.org/en-US/sugar/downloads/latest/$id > $id.xo
+ wget http://activities.sugarlabs.org/en-US/sugar/downloads/latest/$id
done
# get the script to install the activities
-curl -O http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/2d1057e6d8e74aecfa82c0b8e51a2c8d772a7923/install-activity.py
+wget http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/2d1057e6d8e74aecfa82c0b8e51a2c8d772a7923/install-activity.py
# pull sample content for the journal
PDFS="$PDFS south_america.pdf"
@@ -138,11 +138,11 @@ PDFS="$PDFS oceania.pdf"
PDFS="$PDFS southeast_asia.pdf"
for pdf in $PDFS ; do
- curl -O http://dev.sugarlabs.org/raw-attachment/ticket/840/$pdf
+ wget http://dev.sugarlabs.org/raw-attachment/ticket/840/$pdf
done
# get sample content setup script directly from git
-curl -O http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/8ad00566985860f9891aea714c74e5430e9c395d/copy-to-datastore.py
+wget http://git.sugarlabs.org/projects/soas/repos/mainline/blobs/raw/8ad00566985860f9891aea714c74e5430e9c395d/copy-to-datastore.py
chown -R 500:500 $BUNDLES_DIR
cd $WD