Files
DirectAdmin-1.62.4/update/scripts/is_systemd.sh
tuend-work 4478491d73 z
2025-11-13 07:41:56 +07:00

9 lines
144 B
Bash

#!/bin/sh
SYSTEMDDIR=/etc/systemd/system
if [ -d ${SYSTEMDDIR} ] && [ -e /usr/bin/systemctl ]; then
echo "yes";
exit 0;
fi
echo "no";
exit 1;