class Mixlib::Archive::Tar

def is_tar_archive?(io)

OLDGNU_MAGIC "ustar \0" /* 7 chars and a null */
tar's magic is at byte 257 and is "ustar\0"
def is_tar_archive?(io)
  !(read_tar_magic(io) =~ /ustar\s{0,2}\x00/).nil?
end