fastapi-dls/.DEBIAN/postrm

14 lines
298 B
Plaintext
Raw Normal View History

#!/bin/bash
2023-01-18 06:58:30 +00:00
if [ "$1" = purge ] && [ -f /etc/systemd/system/fastapi-dls.service ]; then
2022-12-28 06:16:34 +00:00
echo "> Removing service file."
rm /etc/systemd/system/fastapi-dls.service
fi
2023-01-18 06:58:30 +00:00
if [ "$1" = purge ] && [ -d /usr/share/fastapi-dls ]; then
echo "> Removing app."
rm -r /usr/share/fastapi-dls
fi
# todo