feat: add ability to specify custom flags on clone/create

Refs dokku/dokku-redis#64
This commit is contained in:
Jose Diaz-Gonzalez
2017-08-26 18:10:21 -04:00
parent 3c8439c256
commit e7802ca80e
4 changed files with 64 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ postgres-create-cmd() {
local cmd="$PLUGIN_COMMAND_PREFIX:create" argv=("$@"); [[ ${argv[0]} == "$cmd" ]] && shift 1
declare SERVICE="$1"
service_create "$SERVICE"
service_create "$SERVICE" "${@:2}"
}
postgres-create-cmd "$@"