mirror of
https://github.com/eliasstepanik/ark-ac-server-tools.git
synced 2026-01-11 18:48:26 +00:00
15 lines
224 B
Bash
15 lines
224 B
Bash
#!/bin/bash
|
|
#
|
|
# uninstall-user.sh
|
|
|
|
BINDIR="/home/steam/bin"
|
|
DATADIR="/home/steam/.local/share/arkmanager"
|
|
|
|
for f in "${BINDIR}/arkmanager" \
|
|
"${DATADIR}/uninstall.sh"
|
|
do
|
|
if [ -f "$f" ]; then
|
|
rm "$f"
|
|
fi
|
|
done
|