awx/tools/scripts/automation-controller-service
2021-05-18 19:26:18 -04:00

19 lines
437 B
Bash
Executable File

#!/bin/bash
if [ -f /etc/sysconfig/automation-controller ]; then
source /etc/sysconfig/automation-controller
fi
case "$1" in
start|stop|restart)
exec systemctl $1 automation-controller.service
;;
status)
exec systemctl status automation-controller.service $CONTROLLER_SERVICES
;;
*)
echo "Usage: automation-controller-service start|stop|restart|status"
exit 1
;;
esac