mirror of
https://gitea.publichub.eu/oscar.krause/fastapi-dls.git
synced 2024-11-10 08:28:49 +00:00
14 lines
258 B
Bash
Executable File
14 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f /etc/systemd/system/fastapi-dls.service ]; then
|
|
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
|