Class: OsCtld::UserControl::Commands::CtOnStart
- Inherits:
-
Base
- Object
- Commands::Base
- Base
- OsCtld::UserControl::Commands::CtOnStart
- Includes:
- OsCtl::Lib::Utils::Log
- Defined in:
- lib/osctld/user_control/commands/ct_on_start.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Commands::Base
#client, #client_handler, #id, #opts
Instance Method Summary collapse
Methods inherited from Base
handle, #initialize, #owns_ct?, run
Methods inherited from Commands::Base
#base_execute, #call_cmd, #call_cmd!, #error, #error!, handle, #handled, #indirect?, #initialize, #manipulate, #manipulation_holder, #ok, #progress, #request_stop, run, run!
Constructor Details
This class inherits a constructor from OsCtld::UserControl::Commands::Base
Instance Method Details
#execute ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/osctld/user_control/commands/ct_on_start.rb', line 10 def execute ct = DB::Containers.find(opts[:id], opts[:pool]) return error('container not found') unless ct return error('access denied') unless owns_ct?(ct) # Configure the system DistConfig.run(ct.run_conf, :start) Hook.run(ct, :on_start) ok rescue HookFailed => e error(e.) end |