diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-10-27 10:29:50 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-10-27 10:29:50 +0200 |
commit | df737674b36dc34b547498357e6027bbe9766717 (patch) | |
tree | f33fdd2819f2387d4194fd5ef8129a5f21029049 | |
parent | eac1ef53eb7398b635274566977a0062adbe2418 (diff) | |
download | jenkins.debian.net-df737674b36dc34b547498357e6027bbe9766717.tar.xz |
reproducible Debian: fixup perms on /boot/vmlinuz-* on arm64 Ubuntu nodes
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | update_jdn.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index bad2d2f4..542a5b9c 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -94,6 +94,17 @@ case $HOSTNAME in *) ;; esac +# ubuntu decided to change kernel perms in the middle of LTS… +case $HOSTNAME in + codethink-sled*) + # fixup perms + sudo chmod +r /boot/vmlinuz-* + ;; + *) ;; +esac + + + # # set up users and groups # |