diff options
Diffstat (limited to 'examples/cron/etch.sh')
-rwxr-xr-x | examples/cron/etch.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/cron/etch.sh b/examples/cron/etch.sh index 3f647aa60..49c62b7ae 100755 --- a/examples/cron/etch.sh +++ b/examples/cron/etch.sh @@ -2,16 +2,16 @@ set -e -BUILD="etch" +BUILD="monthly" # Begin custom defaults AUTOBUILD="enabled" -DATE="r0_1.0~a18-1" -DESTDIR="/srv/debian-unofficial/ftp/debian-live/cdimage" +DATE="`date +%Y%m%d`" +DESTDIR="/srv/debian-live/www/cdimage" TEMPDIR="/srv/tmp/live-helper" -OPTIONS="--binary-indices disabled --initramfs casper" +OPTIONS="--initramfs casper --apt-recommends disabled" ARCHITECTURES="`dpkg --print-architecture`" DISTRIBUTIONS="etch" @@ -82,7 +82,7 @@ do # Moving logs mv "${TEMPDIR}"/debian-live/log.txt "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-iso-log.txt - mv "${TEMPDIR}"/debian-live/binary/packages.txt "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-iso-packages.txt + cp "${TEMPDIR}"/debian-live/binary/casper/filesystem.manifest "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-iso-packages.txt # Creating images directory mkdir -p "${DESTDIR}"/"${BUILD}"-builds/${DATE}/${ARCHITECTURE} |