From adfd5f9c2a05b8778604f89c1f51f755e34561dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Mar 2010 12:13:10 +0100 Subject: Updating filesystem pathes in cgi. --- cgi/cgi | 12 ++++++------ cgi/cron | 22 +++++++++++----------- cgi/default | 10 +++++----- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/cgi/cgi b/cgi/cgi index b593a7b..47b6a84 100755 --- a/cgi/cgi +++ b/cgi/cgi @@ -8,11 +8,11 @@ # under certain conditions; see COPYING for details. # Reading defaults -if [ -r /etc/default/live-webhelper ] +if [ -r /etc/default/live-helper.cgi ] then - . /etc/default/live-webhelper + . /etc/default/live-helper.cgi else - echo "E: /etc/default/live-webhelper missing" + echo "E: /etc/default/live-helper.cgi missing" exit 1 fi @@ -164,7 +164,7 @@ else # Writing build file cat > "${_TEMPDIR}"/"${_BUILD}".build << EOF -# live-webhelper "${VERSION}" build file +# live-helper.cgi "${VERSION}" build file # `date -R` _BUILD="${_BUILD}" @@ -216,8 +216,8 @@ _CUSTOM_BOOTSTRAP="${_CUSTOM_BOOTSTRAP}" _CUSTOM_BINARY="${_CUSTOM_BINARY}" EOF - echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-webhelper: add web build (${_BUILD})." >> /var/log/live - echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-webhelper: options ${_BUILD} |email ${_EMAIL}|binary_images ${LH_BINARY_IMAGES}|distribution ${LH_DISTRIBUTION}|packages_lists ${LH_PACKAGES_LISTS}|packages ${LH_PACKAGES}|architecture ${LH_ARCHITECTURE}|mirror_bootstrap_security ${LH_MIRROR_BOOTSTRAP}|mirror_bootstrap ${LH_MIRROR_BOOTSTRAP}|mirror_binary_security ${LH_MIRROR_BINARY_SECURITY}|mirror_binary ${LH_MIRROR_BINARY}|sections ${LH_SECTIONS}|chroot_filesystem ${LH_CHROOT_FILESYSTEM}|linux_flavours ${LH_LINUX_FLAVOURS}|security ${LH_SECURITY}|symlinks ${LH_SYMLINKS}|sysvinit ${LH_SYSVINIT}|binary_indices ${LH_BINARY_INDICES}|bootappend ${LH_BOOTAPPEND}|bootloader ${LH_BOOTLOADER}|debian_installer ${LH_DEBIAN_INSTALLER}|encryption ${LH_ENCRYPTION}|hostname ${LH_HOSTNAME}|iso_application ${LH_ISO_APPLICATION}|iso_preparer ${LH_ISO_PREPARER}|iso_publisher ${LH_ISO_PUBLISHER}|iso_volume ${LH_ISO_VOLUME}|memtest ${LH_MEMTEST}|net_path ${LH_NET_ROOT_PATH}|net_server ${LH_NET_ROOT_SERVER}|username ${LH_USERNAME}|source_images ${LH_SOURCE_IMAGES}|source ${LH_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}\n" >> /var/log/live + echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-helper.cgi: add web build (${_BUILD})." >> /var/log/live + echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-helper.cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LH_BINARY_IMAGES}|distribution ${LH_DISTRIBUTION}|packages_lists ${LH_PACKAGES_LISTS}|packages ${LH_PACKAGES}|architecture ${LH_ARCHITECTURE}|mirror_bootstrap_security ${LH_MIRROR_BOOTSTRAP}|mirror_bootstrap ${LH_MIRROR_BOOTSTRAP}|mirror_binary_security ${LH_MIRROR_BINARY_SECURITY}|mirror_binary ${LH_MIRROR_BINARY}|sections ${LH_SECTIONS}|chroot_filesystem ${LH_CHROOT_FILESYSTEM}|linux_flavours ${LH_LINUX_FLAVOURS}|security ${LH_SECURITY}|symlinks ${LH_SYMLINKS}|sysvinit ${LH_SYSVINIT}|binary_indices ${LH_BINARY_INDICES}|bootappend ${LH_BOOTAPPEND}|bootloader ${LH_BOOTLOADER}|debian_installer ${LH_DEBIAN_INSTALLER}|encryption ${LH_ENCRYPTION}|hostname ${LH_HOSTNAME}|iso_application ${LH_ISO_APPLICATION}|iso_preparer ${LH_ISO_PREPARER}|iso_publisher ${LH_ISO_PUBLISHER}|iso_volume ${LH_ISO_VOLUME}|memtest ${LH_MEMTEST}|net_path ${LH_NET_ROOT_PATH}|net_server ${LH_NET_ROOT_SERVER}|username ${LH_USERNAME}|source_images ${LH_SOURCE_IMAGES}|source ${LH_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}\n" >> /var/log/live fi sed -e "s/VERSION/${VERSION}/" "${_TEMPLATES}"/footer.html diff --git a/cgi/cron b/cgi/cron index 9be288d..5d87cfe 100755 --- a/cgi/cron +++ b/cgi/cron @@ -11,11 +11,11 @@ . "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh # Reading defaults -if [ -r /etc/default/live-webhelper ] +if [ -r /etc/default/live-helper.cgi ] then - . /etc/default/live-webhelper + . /etc/default/live-helper.cgi else - echo "E: /etc/default/live-webhelper missing" + echo "E: /etc/default/live-helper.cgi missing" exit 1 fi @@ -26,27 +26,27 @@ then fi # Checking lock file -if [ -f /var/lock/live-webhelper.lock ] +if [ -f /var/lock/live-helper.cgi.lock ] then - echo "E: live-webhelper already/still running." + echo "E: live-helper.cgi already/still running." exit 1 fi # Creating lock trap -trap "test -f /var/lock/live-webhelper.lock && rm -f /var/lock/live-webhelper.lock; exit 0" 0 1 2 3 9 15 +trap "test -f /var/lock/live-helper.cgi.lock && rm -f /var/lock/live-helper.cgi.lock; exit 0" 0 1 2 3 9 15 # Creating lock file -touch /var/lock/live-webhelper.lock +touch /var/lock/live-helper.cgi.lock # Cleanup old builds: cron should be run at least once per hour to take effect if ls "${_DESTDIR}"/`date -d yesterday +%Y%m%d.%H`* > /dev/null 2>&1 then rm -rf "${_DESTDIR}"/`date -d yesterday +%Y%m%d.%H`* - echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-webhelper: remove web build (`date -d yesterday +%Y%m%d.%H`*)." >> /var/log/live + echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-helper.cgi: remove web build (`date -d yesterday +%Y%m%d.%H`*)." >> /var/log/live fi -# Ok from here spin through the live-webhelper files we have waiting to build +# Ok from here spin through the live-helper.cgi files we have waiting to build #if ls "${_TEMPDIR}"/*.build > /dev/null 2>&1 if Find_files ${_TEMPDIR}/*.build then @@ -63,7 +63,7 @@ then _CUSTOM_BINARY=`awk -F\" '/^_CUSTOM_BINARY=/{print $2}' ${_FILE}` # Drop out some build data for information if something goes wrong. - echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-webhelper: begin web build (${_BUILD})." >> /var/log/live + echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-helper.cgi: begin web build (${_BUILD})." >> /var/log/live # Creating build directory which also creates the config/chroot_sources folder mkdir -p "${_TEMPDIR}"/"${_BUILD}"/config/chroot_sources @@ -162,6 +162,6 @@ then # Removing build directory rm -rf "${_TEMPDIR}"/"${_BUILD}" - echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-webhelper: end web build (${_BUILD}: ${_STATUS})." >> /var/log/live + echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-helper.cgi: end web build (${_BUILD}: ${_STATUS})." >> /var/log/live done fi diff --git a/cgi/default b/cgi/default index f2403bd..8e08435 100644 --- a/cgi/default +++ b/cgi/default @@ -1,4 +1,4 @@ -# Defaults for /etc/cron.daily/live-webhelper +# Defaults for /etc/cron.daily/live-helper.cgi _WEBBUILD="disabled" @@ -6,13 +6,13 @@ _MODE="debian-official" _DEBUG="disabled" -_DESTDIR="/srv/debian-live/www/webhelper" -_TEMPLATES="/usr/share/live-webhelper/templates/${_MODE}" -_TEMPDIR="/srv/tmp/live-webhelper" +_DESTDIR="/srv/debian-live/build/www" +_TEMPLATES="/usr/share/live-helper/templates/cgi/${_MODE}" +_TEMPDIR="/srv/debian-live/build/tmp" LH_MIRROR_BOOTSTRAP="http://ftp.de.debian.org/debian/" LH_MIRROR_BOOTSTRAP_SECURITY="http://ftp.de.debian.org/debian-security/" LH_MIRROR_BINARY="http://ftp.debian.org/debian/" LH_MIRROR_BINARY_SECURITY="http://security.debian.org/" -_SERVER="http://live.debian.net/webhelper" +_SERVER="http://live.debian.net/build" -- cgit v1.0