9 lines
161 B
Bash
Executable File
9 lines
161 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
|
|
|
|
# todo
|