diff --git a/tools/scripts/automation-controller-service b/tools/scripts/automation-controller-service index 92dae20384..323ef729cb 100755 --- a/tools/scripts/automation-controller-service +++ b/tools/scripts/automation-controller-service @@ -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