X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=scripts%2Frelease_helper.sh;h=1bc6ffa7d8988e94e225a4eb0c981f4bfa55a447;hp=a5fba5572f2f7dfd907f070b413086f27f743eb6;hb=c6bcaeb5c892666d0fc1b04b67dffbb7f50eb7e0;hpb=79b60326aeb02772dabb635a1251e208c6f2e797 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 #################################################################