2025-04-25 17:24:19 +02:00

10 lines
122 B
Bash
Executable File

#!/usr/bin/env bash
set -e
if systemctl is-active explorer.service; then
systemctl stop explorer.service
fi
exit 0