Class: OsCtld::Container::Hooks::PreMount

Inherits:
Base show all
Defined in:
lib/osctld/container/hooks.rb

Instance Attribute Summary

Attributes inherited from Base

#ct

Attributes inherited from Hook::Base

#event_instance, #opts

Instance Method Summary collapse

Methods inherited from Base

ct_hook, #setup

Methods inherited from Hook::Base

blocking, blocking?, #blocking?, #exec, hook, #initialize, #setup

Constructor Details

This class inherits a constructor from OsCtld::Hook::Base

Instance Method Details

#environmentObject (protected)



65
66
67
68
69
# File 'lib/osctld/container/hooks.rb', line 65

def environment
  super.merge({
    'OSCTL_CT_ROOTFS_MOUNT' => opts[:rootfs_mount]
  })
end

#executable(hook_path) ⇒ Object (protected)



71
72
73
# File 'lib/osctld/container/hooks.rb', line 71

def executable(hook_path)
  ['nsenter', '--target', opts[:ns_pid].to_s, '--mount', hook_path]
end