This reverts commit b741fe9005
.
This was backed out as problems started occuring shortly after
a large CLI pull request was merged. However, log analysis
shows that the CLI was unrelated to the problems.
9 lines
274 B
Ruby
9 lines
274 B
Ruby
# frozen_string_literal: true
|
|
|
|
UbiCli.base("pg") do
|
|
post_options("ubi pg location-name/(vm-name|_vm-ubid) [options] subcommand [...]", key: :pg_psql) do
|
|
on("-d", "--dbname=name", "override database name")
|
|
on("-U", "--username=name", "override username")
|
|
end
|
|
end
|