diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-05 14:15:34 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-05 14:15:34 +0200 |
commit | e9a0eef898a7f24b8da3020746d49602b4f71fcc (patch) | |
tree | 833081158fbc51924f237b521062901e0401d282 /shutdown | |
parent | 4bf064f37ae164b452320bdc45cf03c53d66a5b1 (diff) |
Add start and shutdown scripts
Diffstat (limited to 'shutdown')
-rwxr-xr-x | shutdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shutdown b/shutdown new file mode 100755 index 0000000..613b645 --- /dev/null +++ b/shutdown @@ -0,0 +1,4 @@ +#!/bin/sh + +pidof ollama | xargs -r kill +pidof qdrant | xargs -r kill |