AAP-8038 - enable/disable services on reboot (#13415)

Co-authored-by: Lucas Benedito <lbenedit@redhat.com>
This commit is contained in:
lucas-benedito 2023-05-31 21:24:30 +02:00 committed by GitHub
parent 444d05447e
commit 434595481c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,11 @@ case "$1" in
status)
exec systemctl status automation-controller.service $CONTROLLER_SERVICES
;;
*)
echo "Usage: automation-controller-service start|stop|restart|status"
exit 1
;;
enable|disable)
exec systemctl $1 automation-controller.service $CONTROLLER_SERVICES
;;
*)
echo "Usage: automation-controller-service start|stop|restart|status|enable|disable"
exit 1
;;
esac