From: Michael Prokop Date: Fri, 18 Mar 2011 12:08:51 +0000 (+0100) Subject: scripts/release_helper.sh: provide autobuild install instructions and use sudo. X-Git-Tag: v0.13.2~8 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=c6bcaeb5c892666d0fc1b04b67dffbb7f50eb7e0 scripts/release_helper.sh: provide autobuild install instructions and use sudo. --- diff --git a/scripts/release_helper.sh b/scripts/release_helper.sh index a5fba55..1bc6ffa 100755 --- a/scripts/release_helper.sh +++ b/scripts/release_helper.sh @@ -1,10 +1,25 @@ #!/bin/bash # Filename: scripts/release_helper.sh -# Purpose: helper script to build grml-live Debian packages (WFM style though) +# Purpose: helper script to build grml-live Debian packages # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2 or any later version. ################################################################################ +## How to set up autobuild (for automatically updating grml-live.git and +## build packages out of git tree and install them, e.g. for usage on +## daily.grml.org): +# echo "deb file:/home/grml-live-git/grml-live.build-area/ ./" >> /etc/apt/sources.list.d/grml-live.list +# adduser --disabled-login --disabled-password grml-live-git +# visudo -> add "grml-live-git ALL=NOPASSWD: /usr/bin/apt-get" +# su - grml-live-git +# mkdir /home/grml-live-git/grml-live.build-area +# git clone git://git.grml.org/grml-live.git +# git config --global user.name "Grml-Live Git Autobuild" +# git config --global user.email "grml-live-git@$(hostname)" +# +# Finally install a cron job (as user grml-live-git) like: +# 30 00 * * * cd /home/grml-live-git/grml-live.git/ && env AUTOBUILD=1 /home/grml-live-git/release_helper.sh >/home/grml-live-git/grml-live-build.log +################################################################################ set -e set -u @@ -106,9 +121,9 @@ if [ -n "${AUTOBUILD:-}" ] ; then ) git checkout master git branch -D ${autobuild_branch} || true - apt-get update + sudo apt-get update PACKAGES=$(dpkg --list grml-live\* | awk '/^ii/ {print $2}') - apt-get -y --allow-unauthenticated install $PACKAGES + sudo apt-get -y --allow-unauthenticated install $PACKAGES fi ## END OF FILE #################################################################