mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
9 lines
162 B
Bash
9 lines
162 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
|
echo "Stopping PiliPlus if running..."
|
|
pkill -x piliplus || true
|
|
fi
|
|
|
|
exit 0
|