cdist/cdist/conf/type/__service/explorer/service-manager

9 lines
136 B
Plaintext
Raw Normal View History

2020-02-17 10:18:36 +00:00
#!/bin/sh
# Assume systemd if systemctl is in PATH.
if [ "$(command -v systemctl)" ]; then
printf "systemd"
else
printf "unknown"
fi