Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@marcopg.org>2008-12-26 19:02:35 (GMT)
committer Marco Pesenti Gritti <marco@marcopg.org>2008-12-26 19:02:35 (GMT)
commit15efd15f9b084567137d0d473091f21a957f489f (patch)
tree352030d8a4ec548a269d104c9fd49a7a2d802d89
parent66a6f5db26f06c8e76887e92ee2b05e47e39b50b (diff)
parent6a0aae24b19fbd827075244f4cf586b58e8cb120 (diff)
Merge branch 'master' of gitorious@git.sugarlabs.org:soas/mainline
-rw-r--r--soas.ks31
1 files changed, 31 insertions, 0 deletions
diff --git a/soas.ks b/soas.ks
index 450aeeb..0c38939 100644
--- a/soas.ks
+++ b/soas.ks
@@ -132,6 +132,37 @@ EndSection
FOE
fi
+mkdir -p /home/liveuser/Activities
+for bundle in \`find /usr/share/sugar/bundles -maxdepth 1\` ; do
+ ln -s \$bundle /home/liveuser/Activities
+done
+
EOF
%end
+
+%post --nochroot
+
+ACTIVITIES="
+http://dev.laptop.org/~morgan/bundles/other/Paint-23.xo
+http://dev.laptop.org/~cscott/bundles/Pippy-30.xo
+"
+
+WD=$PWD
+BUNDLES_DIR=$INSTALL_ROOT/usr/share/sugar/bundles
+
+mkdir -p $BUNDLES_DIR
+cd $BUNDLES_DIR
+
+for url in $ACTIVITIES ; do
+ curl -O $url
+done
+
+for file in *.xo ; do
+ unzip $file
+ rm $file
+done
+
+cd $WD
+
+%end