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