mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-08 17:51:19 +00:00
8 lines
104 B
Bash
Executable file
8 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ $(id -u) -ne 0 ] ; then
|
|
echo "❌ Run me as root"
|
|
exit 1
|
|
fi
|
|
|
|
systemctl stop haproxy
|