Class: OsCtld::Commands::Container::Exec
- Includes:
- OsCtl::Lib::Utils::Log, Utils::SwitchUser
- Defined in:
- lib/osctld/commands/container/exec.rb
Instance Attribute Summary
Attributes inherited from Base
#client, #client_handler, #id, #opts
Instance Method Summary collapse
Methods included from Utils::SwitchUser
Methods inherited from 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::Commands::Base
Instance Method Details
#execute ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/osctld/commands/container/exec.rb', line 10 def execute ct = DB::Containers.find(opts[:id], opts[:pool]) error!('container not found') unless ct error!('container not running') if !ct.running? && !opts[:run] # Ensure the container is mounted ct.mount client.send("#{{ status: true, response: 'continue' }.to_json}\n", 0) st = ContainerControl::Commands::Exec.run!( ct, cmd: opts[:cmd], run: opts[:run], network: opts[:network], stdin: client.recv_io, stdout: client.recv_io, stderr: client.recv_io ) ok(exitstatus: st) rescue ContainerControl::Error => e error(e.) end |