class Vermillion::Controller::Update

Public Instance Methods

all() click to toggle source

Update all sites in the manifest

# File lib/client/controller/update.rb, line 7
def all
  send_to_all(:update)
end
config(server) click to toggle source

Update the configuration manifest for one server Params:

server

Symbol representing the server you want to update

# File lib/client/controller/update.rb, line 21
def config(server)
  send_to_one(server, :update_config)
end
one(server) click to toggle source

Update just one server Params:

server

Symbol representing the server you want to update

# File lib/client/controller/update.rb, line 14
def one(server)
  send_to_one(server, :update)
end