awx/tools/scripts/automation-controller-service
lucas-benedito 434595481c
AAP-8038 - enable/disable services on reboot (#13415)
Co-authored-by: Lucas Benedito <lbenedit@redhat.com>
2023-05-31 19:24:30 +00:00

22 lines
496 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
;;
enable|disable)
exec systemctl $1 automation-controller.service $CONTROLLER_SERVICES
;;
*)
echo "Usage: automation-controller-service start|stop|restart|status|enable|disable"
exit 1
;;
esac