Class: OsCtld::Container::Hooks::PreMount
- Inherits:
-
Base
- Object
- Hook::Base
- Base
- OsCtld::Container::Hooks::PreMount
- Defined in:
- lib/osctld/container/hooks.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Hook::Base
Instance Method Summary collapse
- #environment ⇒ Object protected
- #executable(hook_path) ⇒ Object protected
Methods inherited from Base
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
#environment ⇒ Object (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 |