fastapi-dls/.DEBIAN/postrm

14 lines
258 B
Plaintext
Raw Normal View History

#!/bin/bash
if [ -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
if [ -d /usr/share/fastapi-dls ]; then
echo "> Removing app."
rm -r /usr/share/fastapi-dls
fi
# todo