diff options
author | Ben Davis | 2024-07-11 11:01:03 -0500 |
---|---|---|
committer | Ben Davis | 2024-07-11 11:01:03 -0500 |
commit | 7fcac72c62eeccf1cf38bb8a83b100c221495238 (patch) | |
tree | 9f880b0f028f2e3076c742f7b2d343d2af0c2d89 /open-webui.service | |
parent | 50b44b4baa08dca95aa5bb7d99e2d9af751bd4c5 (diff) | |
download | aur-7fcac72c62eeccf1cf38bb8a83b100c221495238.tar.gz |
Fix systemd exec line
Diffstat (limited to 'open-webui.service')
-rw-r--r-- | open-webui.service | 2 |
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 |