Class: OsCtld::Commands::Container::Runscript

Inherits:
Base
  • Object
show all
Includes:
OsCtl::Lib::Utils::Log, Utils::SwitchUser
Defined in:
lib/osctld/commands/container/runscript.rb

Instance Attribute Summary

Attributes inherited from Base

#client, #client_handler, #id, #opts

Instance Method Summary collapse

Methods included from Utils::SwitchUser

#ct_attach, #ct_syscmd

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

#executeObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/osctld/commands/container/runscript.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::Runscript.run!(
    ct,
    script: opts[:script],
    args: opts[:arguments] || [],
    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.message)
end