fermitools / jobsub_lite

jobsub_lite is a wrapper for HTCondor job submission
Apache License 2.0
1 stars 7 forks source link

the GZIP=-n in tarfile creation is giving a warning on AL9 #548

Open marcmengel opened 6 months ago

marcmengel commented 6 months ago

So in AL9, we get a warning from gzip about the GZIP=-n in the environment:

gzip: warning: GZIP environment variable is deprecated; use an alias or script

when we are making a tarfile with tardir:, of course we do this to get a compressed file that is repeatable; but we should instead probably a) switch to bz2 and b) possibly switch to using the python tar module to make the tarfile, but that will involve walking the directory tree, handling the exclude list, etc.