Sha256: d6bd102ce40da0f26849783af41b55996850a153d9003aa5f30adb839bb39d16
Contents?: true
Size: 608 Bytes
Versions: 40
Compression:
Stored size: 608 Bytes
Contents
module Brightbox command [:groups] do |cmd| cmd.desc I18n.t("groups.destroy.desc") cmd.arg_name "grp-id..." # TODO: add option to remove all servers from group before destroying cmd.command [:destroy] do |c| c.action do |_global_options, _options, args| raise "You must specify the server groups to destroy" if args.empty? sgs = ServerGroup.find_or_call(args) do |id| raise "Couldn't find server group #{id}" end sgs.each do |sg| info "Destroying server group #{sg}" sg.destroy end end end end end
Version data entries
40 entries across 40 versions & 1 rubygems