Class: Bosh::Cli::Command::User

Inherits:
Base show all
Defined in:
lib/cli/commands/user.rb

Constant Summary

Constants inherited from Base

Base::DEFAULT_DIRECTOR_PORT

Instance Attribute Summary

Attributes inherited from Base

#args, #options, #out, #runner, #work_dir

Instance Method Summary collapse

Methods inherited from Base

#add_option, #blob_manager, #blobstore, #cache, #config, #confirmed?, #deployment, #director, #exit_code, #initialize, #interactive?, #logged_in?, #non_interactive?, #password, #redirect, #release, #remove_option, #target, #target_name, #task_report, #username, #verbose?

Methods included from Bosh::Cli::CommandDiscovery

#desc, #method_added, #option, #register_command, #usage

Constructor Details

This class inherits a constructor from Bosh::Cli::Command::Base

Instance Method Details

#create(username = nil, password = nil) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/cli/commands/user.rb', line 9

def create(username = nil, password = nil)
  auth_required

  if interactive?
    username = ask("Enter username: ") if username.blank?
    if password.blank?
      password = ask("Enter password: ") { |q| q.echo = "*" }
    end
  end

  if username.blank? || password.blank?
    err("Please enter username and password")
  end

  if director.create_user(username, password)
    say("User `#{username}' has been created".green)
  else
    err("Error creating user")
  end
end