Module: Capistrano::Configuration::Servers

Included in:
Capistrano::Configuration
Defined in:
lib/capistrano/configuration/servers.rb

Instance Method Summary collapse

Instance Method Details

#find_servers(options = {}) ⇒ Object

Attempts to find all defined servers that match the given criteria. The options hash may include a :hosts option (which should specify an array of host names or ServerDefinition instances), a :roles option (specifying an array of roles), an :only option (specifying a hash of key/value pairs that any matching server must match), an :exception option (like :only, but the inverse), and a :skip_hostfilter option to ignore the HOSTFILTER environment variable described below.

Additionally, if the HOSTS environment variable is set, it will take precedence over any other options. Similarly, the ROLES environment variable will take precedence over other options. If both HOSTS and ROLES are given, HOSTS wins.

Yet additionally, if the HOSTFILTER environment variable is set, it will limit the result to hosts found in that (comma-separated) list.

Usage:

# return all known servers
servers = find_servers

# find all servers in the app role that are not exempted from
# deployment
servers = find_servers :roles => :app,
             :except => { :no_release => true }

# returns the given hosts, translated to ServerDefinition objects
servers = find_servers :hosts => "[email protected]"


41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/capistrano/configuration/servers.rb', line 41

def find_servers(options={})
  hosts  = server_list_from(ENV['HOSTS'] || options[:hosts])
  
  if hosts.any?
    if options[:skip_hostfilter]
      hosts.uniq
    else
      filter_server_list(hosts.uniq)
    end
  else
					roles = role_list_from(ENV['ROLES'] || options[:roles] || self.roles.keys)
					roles = roles & Array(options[:roles]) if preserve_roles && !options[:roles].nil?

    only   = options[:only] || {}
    except = options[:except] || {}
    
    servers = roles.inject([]) { |list, role| list.concat(self.roles[role]) }
    servers = servers.select { |server| only.all? { |key,value| server.options[key] == value } }
    servers = servers.reject { |server| except.any? { |key,value| server.options[key] == value } }

    if options[:skip_hostfilter]
      servers.uniq
    else
      filter_server_list(servers.uniq)
    end
  end
end

#find_servers_for_task(task, options = {}) ⇒ Object

Identifies all servers that the given task should be executed on. The options hash accepts the same arguments as #find_servers, and any preexisting options there will take precedence over the options in the task.



8
9
10
# File 'lib/capistrano/configuration/servers.rb', line 8

def find_servers_for_task(task, options={})
  find_servers(task.options.merge(options))
end