2022-12-22 09:41:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-01-17 13:57:39 +00:00
|
|
|
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
|
|
|
|
|
2023-01-17 13:57:54 +00:00
|
|
|
if [ -d /usr/share/fastapi-dls ]; then
|
|
|
|
echo "> Removing app."
|
|
|
|
rm -r /usr/share/fastapi-dls
|
|
|
|
fi
|
|
|
|
|
2022-12-22 09:41:07 +00:00
|
|
|
# todo
|