mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-02-02 04:03:07 +00:00
10 lines
122 B
Bash
Executable File
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
|