mirror of
https://github.com/hoytech/strfry.git
synced 2025-06-16 08:18:51 +00:00
13 lines
163 B
Bash
13 lines
163 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
systemctl stop strfry
|
|
systemctl disable strfry
|
|
fi
|
|
|
|
if [ "$1" = "upgrade" ]; then
|
|
systemctl stop strfry
|
|
fi
|