Class: Puppet::ModuleTool::Tar::Gnu Private

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/module_tool/tar/gnu.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#pack(sourcedir, destfile) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



18
19
20
# File 'lib/puppet/module_tool/tar/gnu.rb', line 18

def pack(sourcedir, destfile)
  Puppet::Util::Execution.execute("tar cf - #{sourcedir} | gzip -c > #{File.basename(destfile)}")
end

#unpack(sourcefile, destdir, owner) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



6
7
8
9
10
11
12
13
14
15
16
# File 'lib/puppet/module_tool/tar/gnu.rb', line 6

def unpack(sourcefile, destdir, owner)
  sourcefile = File.expand_path(sourcefile)
  destdir = File.expand_path(destdir)

  Dir.chdir(destdir) do
    Puppet::Util::Execution.execute("gzip -dc #{Shellwords.shellescape(sourcefile)} | tar xof -")
    Puppet::Util::Execution.execute("find . -type d -exec chmod 755 {} +")
    Puppet::Util::Execution.execute("find . -type f -exec chmod u+rw,g+r,a-st {} +")
    Puppet::Util::Execution.execute("chown -R #{owner} .")
  end
end