summarylogtreecommitdiffstats
path: root/open-webui.service
diff options
context:
space:
mode:
authorBen Davis2024-07-11 11:01:03 -0500
committerBen Davis2024-07-11 11:01:03 -0500
commit7fcac72c62eeccf1cf38bb8a83b100c221495238 (patch)
tree9f880b0f028f2e3076c742f7b2d343d2af0c2d89 /open-webui.service
parent50b44b4baa08dca95aa5bb7d99e2d9af751bd4c5 (diff)
downloadaur-7fcac72c62eeccf1cf38bb8a83b100c221495238.tar.gz
Fix systemd exec line
Diffstat (limited to 'open-webui.service')
-rw-r--r--open-webui.service2
1 files changed, 1 insertions, 1 deletions
diff --git a/open-webui.service b/open-webui.service
index ff22aa3e9065..468fa5486a25 100644
--- a/open-webui.service
+++ b/open-webui.service
@@ -9,7 +9,7 @@ Group=open-webui
WorkingDirectory=/opt/open-webui
Environment=PYTHONUNBUFFERED=1
EnvironmentFile=/etc/open-webui.conf
-ExecStart=/bin/bash -c "cd /opt/open-webui/backend && . ./venv/bin/activate && start.sh"
+ExecStart=/bin/bash -c "cd /opt/open-webui/backend && source ./venv/bin/activate && bash start.sh"
Restart=on-failure