mirror of
https://github.com/whit3rabbit/anyllm-proxy.git
synced 2026-09-21 16:00:49 +00:00
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
233 B
Bash
Executable File
14 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|deconfigure)
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl stop anyllm-proxy || true
|
|
systemctl disable anyllm-proxy || true
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
exit 0
|