From 7813fa19b861bc507e8abae355dda35cd8a45b57 Mon Sep 17 00:00:00 2001 From: Andrew Stout Date: Fri, 8 Aug 2025 15:46:44 -0500 Subject: [PATCH] Replaced app name variable with just the application name --- install/litellm-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install/litellm-install.sh b/install/litellm-install.sh index 304798fb..41dc2fc6 100644 --- a/install/litellm-install.sh +++ b/install/litellm-install.sh @@ -47,26 +47,26 @@ msg_ok "Set up PostgreSQL" msg_info "Creating Service" mkdir -p /opt -cat </opt/"${APPLICATION}".yaml +cat </opt/litellm.yaml general_settings: master_key: sk-1234 database_url: postgresql://$DB_USER:$DB_PASS@127.0.0.1:5432/$DB_NAME store_model_in_db: true EOF -cat </etc/systemd/system/"${APPLICATION}".service +cat </etc/systemd/system/litellm.service [Unit] Description=LiteLLM [Service] Type=simple -ExecStart=litellm --config /opt/${APPLICATION}.yaml --use_prisma_migrate +ExecStart=litellm --config /opt/litellm.yaml --use_prisma_migrate Restart=always [Install] WantedBy=multi-user.target EOF -systemctl enable -q --now "${APPLICATION}" +systemctl enable -q --now litellm msg_ok "Created Service" motd_ssh