1
0
mirror of https://git.koehlerweb.org/frodovdr/guac-install synced 2025-05-16 07:13:15 +02:00

Compare commits

..

No commits in common. "4e88c3731e6b40221f73966ff728cb5c8cf7638f" and "b60850d1b2fa5cd72e9a61d27897e45b654da153" have entirely different histories.

3 changed files with 5 additions and 5 deletions

View File

@ -64,7 +64,7 @@ mkdir -p /etc/guacamole
# Install guacd (Guacamole-server) # Install guacd (Guacamole-server)
cd guacamole-server-${GUACVERSION} cd guacamole-server-${GUACVERSION}
./configure --with-systemd-dir=/etc/systemd/system ./configure --with-init-dir=/etc/init.d
make make
make install make install

View File

@ -410,11 +410,11 @@ cd guacamole-server-${GUACVERSION}/
echo -e "${BLUE}Building Guacamole-Server with GCC $( gcc --version | head -n1 | grep -oP '\)\K.*' | awk '{print $1}' ) ${NC}" echo -e "${BLUE}Building Guacamole-Server with GCC $( gcc --version | head -n1 | grep -oP '\)\K.*' | awk '{print $1}' ) ${NC}"
echo -e "${BLUE}Configuring Guacamole-Server. This might take a minute...${NC}" echo -e "${BLUE}Configuring Guacamole-Server. This might take a minute...${NC}"
./configure --with-systemd-dir=/etc/systemd/system &>> ${LOG} ./configure --with-init-dir=/etc/init.d &>> ${LOG}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Failed to configure guacamole-server" echo "Failed to configure guacamole-server"
echo "Trying again with --enable-allow-freerdp-snapshots" echo "Trying again with --enable-allow-freerdp-snapshots"
./configure --with-systemd-dir=/etc/systemd/system --enable-allow-freerdp-snapshots ./configure --with-init-dir=/etc/init.d --enable-allow-freerdp-snapshots
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Failed to configure guacamole-server - again" echo "Failed to configure guacamole-server - again"
exit exit

View File

@ -124,11 +124,11 @@ fi
# Upgrade Guacamole Server # Upgrade Guacamole Server
cd guacamole-server-${GUACVERSION} cd guacamole-server-${GUACVERSION}
./configure --with-systemd-dir=/etc/systemd/system ./configure --with-init-dir=/etc/init.d
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Failed to configure guacamole-server" echo "Failed to configure guacamole-server"
echo "Trying again with --enable-allow-freerdp-snapshots" echo "Trying again with --enable-allow-freerdp-snapshots"
./configure --with-systemd-dir=/etc/systemd/system --enable-allow-freerdp-snapshots ./configure --with-init-dir=/etc/init.d --enable-allow-freerdp-snapshots
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Failed to configure guacamole-server - again" echo "Failed to configure guacamole-server - again"
exit exit