diff --git a/ct/adventurelog.sh b/ct/adventurelog.sh index 08d079769..d173ef750 100644 --- a/ct/adventurelog.sh +++ b/ct/adventurelog.sh @@ -27,6 +27,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi + if ! command -v memcached >/dev/null 2>&1; then + $STD apt-get update + $STD apt-get install -y memcached libmemcached-tools + fi if check_for_gh_release "adventurelog" "seanmorley15/adventurelog"; then msg_info "Stopping Services" systemctl stop adventurelog-backend diff --git a/install/adventurelog-install.sh b/install/adventurelog-install.sh index 1cfc845fa..4f51e367b 100644 --- a/install/adventurelog-install.sh +++ b/install/adventurelog-install.sh @@ -17,7 +17,9 @@ msg_info "Installing Dependencies" $STD apt-get install -y \ gdal-bin \ libgdal-dev \ - git + git \ + memcached \ + libmemcached-tools msg_ok "Installed Dependencies" PYTHON_VERSION="3.12" setup_uv