forked from oscar.krause/fastapi-dls
Oscar Krause
6b3f536681
- fixed app dir - fixed missing readme and version file - keep config on update/remove
14 lines
290 B
Bash
Executable File
14 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -d /etc/fastapi-dls ]]; then
|
|
echo "> Config directory not empty, please remove manually."
|
|
# rm -r /etc/fastapi-dls
|
|
fi
|
|
|
|
if [[ -f /etc/systemd/system/fastapi-dls.service ]]; then
|
|
echo "> Removing service file."
|
|
rm /etc/systemd/system/fastapi-dls.service
|
|
fi
|
|
|
|
# todo
|