class Puppet::ModuleTool::Tar::Gnu

Public Instance Methods

pack(sourcedir, destfile) click to toggle source
# File lib/puppet/module_tool/tar/gnu.rb, line 16
def pack(sourcedir, destfile)
  Puppet::Util::Execution.execute("tar cf - #{sourcedir} | gzip -c > #{File.basename(destfile)}")
end
unpack(sourcefile, destdir, owner) click to toggle source
# File lib/puppet/module_tool/tar/gnu.rb, line 4
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 a-wst {} +")
    Puppet::Util::Execution.execute("chown -R #{owner} .")
  end
end