diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-02-18 01:16:25 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-02-18 01:16:25 +0100 |
commit | 23d6a6d6ab9c3b8a4a7cf9633959342c9f31fd30 (patch) | |
tree | 08f03019eeffc65aed6d292d5f584b8405734765 | |
parent | acc93dba3e252658dec6806d7197fe7ff1850b96 (diff) | |
download | jenkins.debian.net-23d6a6d6ab9c3b8a4a7cf9633959342c9f31fd30.tar.xz |
reproducible: remove code which shouldnt be there. thanks mapreri for spotting this
-rwxr-xr-x | bin/reproducible_setup_pbuilder.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/bin/reproducible_setup_pbuilder.sh b/bin/reproducible_setup_pbuilder.sh index d9a6132b..804acc74 100755 --- a/bin/reproducible_setup_pbuilder.sh +++ b/bin/reproducible_setup_pbuilder.sh @@ -10,17 +10,6 @@ common_init "$@" # common code defining db access . /srv/jenkins/bin/reproducible_common.sh -set +x -# blacklist some packages -for PKG in cups zurl openclipart eigen3 xmds2 ; do - RESULT=$(sqlite3 -init $INIT $PACKAGES_DB " SELECT name FROM source_packages WHERE status = 'blacklisted' AND name = '$PKG'") - if [ "$RESULT" = "" ] ; then - set -x - sqlite3 -init $INIT $PACKAGES_DB "REPLACE into source_packages VALUES ('$PKG','0','blacklisted',date('now'))" - set +x - fi -done - # # create script to configure a pbuilder chroot # |