File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ mv /tmp/scripts-master/shell/arch/docker/*.sh /usr/local/bin/
39
39
# ###
40
40
41
41
# define pacman packages
42
- pacman_packages=" jre8-openjdk-headless jre11-openjdk-headless jre17-openjdk-headless jre-openjdk-headless screen rsync"
42
+ pacman_packages=" jre8-openjdk-headless jre11-openjdk-headless jre17-openjdk-headless jre-openjdk-headless rsync"
43
43
44
44
# install compiled packages using pacman
45
45
if [[ ! -z " ${pacman_packages} " ]]; then
@@ -87,6 +87,11 @@ cat <<EOF > /home/nobody/.screenrc
87
87
termcapinfo xterm* ti@:te@
88
88
EOF
89
89
90
+ # download screen v4 from arch linux archive due to buffer overflow bug reported
91
+ # here:- https://gitlab.archlinux.org/archlinux/packaging/packages/screen/-/issues/2
92
+ curl -o /tmp/screen.tar.zst -L https://archive.archlinux.org/packages/s/screen/screen-4.9.1-2-x86_64.pkg.tar.zst
93
+ pacman -U /tmp/screen.tar.zst --noconfirm
94
+
90
95
# container perms
91
96
# ###
92
97
You can’t perform that action at this time.
0 commit comments