Class: Bolt::Transport::Sudoable::Tmpdir
- Inherits:
-
Object
- Object
- Bolt::Transport::Sudoable::Tmpdir
- Defined in:
- lib/bolt/transport/sudoable/tmpdir.rb
Instance Method Summary collapse
- #chown(owner) ⇒ Object
- #delete ⇒ Object
-
#initialize(node, path) ⇒ Tmpdir
constructor
A new instance of Tmpdir.
- #mkdirs(subdirs) ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(node, path) ⇒ Tmpdir
Returns a new instance of Tmpdir.
7 8 9 10 11 12 |
# File 'lib/bolt/transport/sudoable/tmpdir.rb', line 7 def initialize(node, path) @conn = node @owner = node.user @path = path @logger = node.logger end |
Instance Method Details
#chown(owner) ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/bolt/transport/sudoable/tmpdir.rb', line 27 def chown(owner) return if owner.nil? || owner == @owner result = @conn.execute(['id', '-g', owner]) if result.exit_code != 0 = "Could not identify group of user #{owner}: #{result.stderr.string}" raise Bolt::Node::FileError.new(, 'ID_ERROR') end group = result.stdout.string.chomp # Chown can only be run by root. result = @conn.execute(['chown', '-R', "#{owner}:#{group}", @path], sudoable: true, run_as: 'root') if result.exit_code != 0 = "Could not change owner of '#{@path}' to #{owner}: #{result.stderr.string}" raise Bolt::Node::FileError.new(, 'CHOWN_ERROR') end # File ownership successfully changed, record the new owner. @owner = owner end |
#delete ⇒ Object
48 49 50 51 52 53 54 55 |
# File 'lib/bolt/transport/sudoable/tmpdir.rb', line 48 def delete result = @conn.execute(['rm', '-rf', @path], sudoable: true, run_as: @owner) if result.exit_code != 0 @logger.warn("Failed to clean up tempdir '#{@path}': #{result.stderr.string}") end # For testing result.stderr.string end |
#mkdirs(subdirs) ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/bolt/transport/sudoable/tmpdir.rb', line 18 def mkdirs(subdirs) abs_subdirs = subdirs.map { |subdir| File.join(@path, subdir) } result = @conn.execute(['mkdir', '-p'] + abs_subdirs) if result.exit_code != 0 = "Could not create subdirectories in '#{@path}': #{result.stderr.string}" raise Bolt::Node::FileError.new(, 'MKDIR_ERROR') end end |
#to_s ⇒ Object
14 15 16 |
# File 'lib/bolt/transport/sudoable/tmpdir.rb', line 14 def to_s @path end |