summaryrefslogtreecommitdiffstats
path: root/update_jdn.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-04-29 14:19:25 +0200
committerHolger Levsen <holger@layer-acht.org>2017-04-29 14:19:25 +0200
commit4301e9feb5456a4c3b5557da3edc466a73560b1c (patch)
tree5808624033b5ae84b8ee98b2cf0d475d672f61c7 /update_jdn.sh
parent48193a0f7ab8491e8290777e1cfe0239d82b1034 (diff)
downloadjenkins.debian.net-4301e9feb5456a4c3b5557da3edc466a73560b1c.tar.xz
fixup 48193a0f, use sudo for update_jdn.sh: rework disabling dsa-check-packages
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'update_jdn.sh')
-rwxr-xr-xupdate_jdn.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/update_jdn.sh b/update_jdn.sh
index e0c4b3a8..a8162750 100755
--- a/update_jdn.sh
+++ b/update_jdn.sh
@@ -35,15 +35,15 @@ set_correct_date() {
disable_dsa_check_packages() {
# disable check for outdated packages as in the future (like this)
# packages from security.d.o will appear outdated always…
- echo -e "#!/bin/sh\n# disabled dsa-check by update_jdn.sh\nexit 0" > /usr/local/bin/dsa-check-packages
- chmod a+rx /usr/local/bin/dsa-check-packages
+ echo -e "#!/bin/sh\n# disabled dsa-check by update_jdn.sh\nexit 0" | sudo tee /usr/local/bin/dsa-check-packages
+ sudo chmod a+rx /usr/local/bin/dsa-check-packages
# FIXME: remove the repair of /bin/true when all hosts has been
# updated
# ln -s /bin/true /usr/local/bin/dsa-check-packages was used which
# broke /bin/true by overwriting it with the perl script dsa-check-packages
if grep -q '/usr/bin/perl' /bin/true ; then
- apt-get install --reinstall coreutils
+ sudo apt-get install --reinstall coreutils
fi
}