more changes

This commit is contained in:
David Young
2026-04-10 15:23:17 -06:00
parent f2edc30575
commit 4f173f7c4c
3 changed files with 23 additions and 8 deletions

View File

@@ -128,6 +128,10 @@ fi
echo "Installing utilities..."
install_packages "${UTILITIES[@]}"
if ! command -v pm2 &> /dev/null; then
npm install pm2 -g
fi
cd ~/.local/share/HamPackServer
echo "Enabling PHP extensions in /etc/php/php.ini..."
@@ -174,10 +178,19 @@ else
echo "Cockpit is already installed, skipping."
fi
# Install openhamclock
echo "Installing openhamclock..."
INSTALL_SUCCESS=true
if ! bash install-openhamclock.sh; then
echo "Warning: install-openhamclock.sh encountered errors. openhamclock may not have installed correctly."
INSTALL_SUCCESS=false
fi
# Install Compiled Servers
echo "Installing compiled servers..."
INSTALL_SUCCESS=true
if ! bash install-compiled.sh; then
echo "Warning: install-compiled.sh encountered errors. Some applications may not have installed correctly."