fastapi-dls/.DEBIAN/postrm
2023-01-18 07:58:30 +01:00

14 lines
298 B
Bash
Executable File

#!/bin/bash
if [ "$1" = purge ] && [ -f /etc/systemd/system/fastapi-dls.service ]; then
echo "> Removing service file."
rm /etc/systemd/system/fastapi-dls.service
fi
if [ "$1" = purge ] && [ -d /usr/share/fastapi-dls ]; then
echo "> Removing app."
rm -r /usr/share/fastapi-dls
fi
# todo