X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=scripts%2Frelease_helper.sh;h=40c532d11a58084cc2bb941a18d3df9f89f8340e;hp=d5c21c2f852e08e10fdf383e4843e1aa538e9695;hb=HEAD;hpb=5a8f565107dc2eab1205190c615f3d43994b0d08 diff --git a/scripts/release_helper.sh b/scripts/release_helper.sh index d5c21c2..40c532d 100755 --- a/scripts/release_helper.sh +++ b/scripts/release_helper.sh @@ -36,7 +36,7 @@ if [ -n "${AUTOBUILD:-}" ] ; then UNIXTIME=$(date +%s) cat > debian/changelog << EOF -grml-live (${GRML_LIVE_VERSION}~autobuild${UNIXTIME}) UNRELEASED; urgency=low +grml-live (${GRML_LIVE_VERSION}+autobuild${UNIXTIME}) UNRELEASED; urgency=low * Automatically built package based on the state of git repository at http://git.grml.org/?p=grml-live.git @@ -110,9 +110,14 @@ if [ -n "${AUTOBUILD:-}" ] ; then ) git checkout master git branch -D ${autobuild_branch} || true - sudo apt-get update + + env APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none sudo apt-get update + PACKAGES=$(dpkg --list grml-live\* | awk '/^ii/ {print $2}') - sudo apt-get -y --allow-unauthenticated install $PACKAGES + env APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none sudo apt-get -y \ + -o DPkg::Options::=--force-confmiss \ + -o DPkg::Options::=--force-confnew \ + --allow-unauthenticated install $PACKAGES fi ## END OF FILE #################################################################