summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/tlpkg/TeXLive/TLPOBJ.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm
index 75b93883c3d..4e0a5811364 100644
--- a/Master/tlpkg/TeXLive/TLPOBJ.pm
+++ b/Master/tlpkg/TeXLive/TLPOBJ.pm
@@ -505,8 +505,11 @@ sub make_container {
# No owner/group options if we are being called on a user's machine to
# make a backup. We only want these when we are making the master
# containers for tlnet.
+ # On TUG server where we create the containers we want to make sure that
+ # - UID and GID of the files are set to 0
+ # - no subversion files are included
my @attrs = $containername =~ /\.r[0-9]/
- ? () : ("--owner", "0", "--group", "0");
+ ? () : ("--owner", "0", "--group", "0", "--exclude=", "/.svn");
my @cmdline = ($tar, "-cf", "$destdir/$tarname", @attrs);
# Get list of files and symlinks to back up. Nothing else should be