Skip to content

Commit 107865b

Browse files
authored
Bump Guacamole to Debian 13 (#8010)
1 parent 0d33b38 commit 107865b

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

ct/apache-guacamole.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var_disk="${var_disk:-4}"
1111
var_cpu="${var_cpu:-1}"
1212
var_ram="${var_ram:-2048}"
1313
var_os="${var_os:-debian}"
14-
var_version="${var_version:-12}"
14+
var_version="${var_version:-13}"
1515
var_unprivileged="${var_unprivileged:-1}"
1616

1717
header_info "$APP"
@@ -38,4 +38,4 @@ description
3838
msg_ok "Completed Successfully!\n"
3939
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
4040
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
41-
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/guacamole${CL}"
41+
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/guacamole${CL}"

frontend/public/json/apache-guacamole.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"ram": 2048,
2424
"hdd": 4,
2525
"os": "debian",
26-
"version": "12"
26+
"version": "13"
2727
}
2828
}
2929
],

install/apache-guacamole-install.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ network_check
1313
update_os
1414

1515
msg_info "Installing Dependencies"
16-
$STD apt-get install -y \
16+
$STD apt install -y \
1717
build-essential \
1818
jq \
1919
libcairo2-dev \
@@ -22,7 +22,7 @@ $STD apt-get install -y \
2222
libtool-bin \
2323
libossp-uuid-dev \
2424
libvncserver-dev \
25-
freerdp2-dev \
25+
freerdp3-dev \
2626
libssh2-1-dev \
2727
libtelnet-dev \
2828
libwebsockets-dev \
@@ -56,8 +56,9 @@ mkdir -p /etc/guacamole/{extensions,lib}
5656
RELEASE_SERVER=$(curl -fsSL https://api.github.com/repos/apache/guacamole-server/tags | jq -r '.[].name' | grep -v -- '-RC' | head -n 1)
5757
curl -fsSL "https://api.github.com/repos/apache/guacamole-server/tarball/refs/tags/${RELEASE_SERVER}" | tar -xz --strip-components=1 -C /opt/apache-guacamole/server
5858
cd /opt/apache-guacamole/server
59+
export CPPFLAGS="-Wno-error=deprecated-declarations"
5960
$STD autoreconf -fi
60-
$STD ./configure --with-init-dir=/etc/init.d --enable-allow-freerdp-snapshots
61+
$STD ./configure --with-init-dir=/etc/init.d --enable-allow-freerdp-snapshots --disable-guaclog
6162
$STD make
6263
$STD make install
6364
$STD ldconfig
@@ -149,6 +150,6 @@ customize
149150
msg_info "Cleaning up"
150151
rm -rf ~/mysql-connector-j-9.3.0{,.tar.gz}
151152
rm -rf ~/guacamole-auth-jdbc-$RELEASE_SERVER{,.tar.gz}
152-
$STD apt-get -y autoremove
153-
$STD apt-get -y autoclean
153+
$STD apt -y autoremove
154+
$STD apt -y autoclean
154155
msg_ok "Cleaned"

0 commit comments

Comments
 (0)