Files
strfry/debian/prerm
2023-12-17 19:50:27 -08:00

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