Method: Orchestrator::Api::SystemsController#start

Defined in:
app/controllers/orchestrator/api/systems_controller.rb

#startObject

Additional Functions:



92
93
94
95
96
97
98
# File 'app/controllers/orchestrator/api/systems_controller.rb', line 92

def start
    # Start all modules in the system
    @cs.modules.each do |mod_id|
        load_and_start mod_id
    end
    render :nothing => true
end