Move service checks into commands file

This commit is contained in:
Jose Diaz-Gonzalez
2015-08-29 02:58:51 -04:00
parent e90217c9cd
commit 8980163b13
2 changed files with 2 additions and 3 deletions

View File

@@ -177,6 +177,8 @@ case "$1" in
;;
$PLUGIN_COMMAND_PREFIX:info)
[[ -z $2 ]] && dokku_log_fail "Please specify a name for the service"
verify_service_name "$2"
service_info $2
;;