openmamba-headserver-tools/bin/openmamba-newrelease

26 lines
1.0 KiB
Plaintext
Raw Normal View History

2012-03-12 15:18:41 +01:00
#!/bin/bash
echo "openmamba media release script"
echo "Copyright (c) 2008 by Silvan Calarco <silvan.calarco@mambasoft.it>"
echo
[ "$1" ] || {
echo "Error: release not specified; aborting"
echo "Usage:"
echo "openmamba-newrelease [release]"
echo
echo "Example:"
echo "openmamba-newrelease 1.0pre5"
exit 1
}
sudo makedist openmamba-milestone1 PLATFORM=livecd FORCE=1 LANGUAGE=en
sudo makedist openmamba-milestone1 PLATFORM=livecd FORCE=1 LANGUAGE=it
sudo makedist openmamba-milestone1 PLATFORM=livecd SUBPLATFORM=livestudio-root FORCE=1 LANGUAGE=en
sudo makedist openmamba-milestone1 PLATFORM=livecd SUBPLATFORM=livestudio-root FORCE=1 LANGUAGE=it
sudo makedist openmamba-milestone1 PLATFORM=installdvd FORCE=1 LANGUAGE=en
sudo makedist openmamba-milestone1 PLATFORM=installdvd FORCE=1 LANGUAGE=it
sudo makedist openmamba-milestone1 PLATFORM=bootusb LANGUAGE=en
sudo makedist openmamba-milestone1 PLATFORM=bootusb LANGUAGE=it
FORCE_OVERWRITE=1 RELEASE=$1 /etc/cron.daily/20-openmamba-autobuild-makedist
exit 0