diff options
Diffstat (limited to 'debian/live-helper.cron.daily')
-rw-r--r-- | debian/live-helper.cron.daily | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/debian/live-helper.cron.daily b/debian/live-helper.cron.daily index a146f0981..0882de491 100644 --- a/debian/live-helper.cron.daily +++ b/debian/live-helper.cron.daily @@ -3,6 +3,7 @@ set -e BUILD="daily" +HOST="$(hostname)" # Checking for live-helper availability if [ ! -x /usr/bin/lh_config ] @@ -35,7 +36,7 @@ else exit 1 fi -echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-helper: begin daily build." >> /var/log/live +echo "$(date +%b\ %d\ %H:%M:%S) ${HOST} live-helper: begin daily build." >> /var/log/live for ARCHITECTURE in ${ARCHITECTURES} do @@ -151,4 +152,4 @@ done rm -f "${DESTDIR}"/"${BUILD}"-builds/current ln -s ${DATE} "${DESTDIR}"/"${BUILD}"-builds/current -echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-helper: end daily build." >> /var/log/live +echo "$(date +%b\ %d\ %H:%M:%S) ${HOST} live-helper: end daily build." >> /var/log/live |