Mention the mapfrom/mapto scripts and how they work.
authorWayne Davison <wayned@samba.org>
Sun, 16 Nov 2008 02:30:47 +0000 (18:30 -0800)
committerWayne Davison <wayned@samba.org>
Sun, 16 Nov 2008 02:32:21 +0000 (18:32 -0800)
NEWS
support/mapfrom [changed mode: 0644->0755]
support/mapto [changed mode: 0644->0755]

diff --git a/NEWS b/NEWS
index 3de0006..f0de0ca 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -38,6 +38,10 @@ Changes since 3.0.4:
     - Added an "instant-rsyncd" script to the support directory, which makes
       it easy to configure a simple rsync daemon in the current directory.
 
     - Added an "instant-rsyncd" script to the support directory, which makes
       it easy to configure a simple rsync daemon in the current directory.
 
+    - Added the "mapfrom" and "mapto" scripts to the support directory, which
+      makes it easier to do user/group mapping in a local transfer based on
+      passwd/group files from another machine.
+
   DEVELOPER RELATED:
 
     - Added more conditional debug output.
   DEVELOPER RELATED:
 
     - Added more conditional debug output.
old mode 100644 (file)
new mode 100755 (executable)
index 4e0b71d..ca3b817
@@ -1,4 +1,14 @@
 #!/usr/bin/perl
 #!/usr/bin/perl
+# This helper script makes it easy to use a passwd or group file to map
+# values in a LOCAL transfer.  For instance, if you mount a backup that
+# does not have the same passwd setup as the local machine, you can do
+# a copy FROM the backup area as follows and get the differing ID values
+# mapped just like a remote transfer FROM the backed-up machine would do:
+#
+# rsync -av --usermap=`mapfrom /mnt/backup/etc/passwd` \
+#           --groupmap=`mapfrom /mnt/backup/etc/group` \
+#           /mnt/backup/some/src/ /some/dest/
+
 while (<>) {
     push @_, "$2:$1" if /^(\w+):[^:]+:(\d+)/;
 }
 while (<>) {
     push @_, "$2:$1" if /^(\w+):[^:]+:(\d+)/;
 }
old mode 100644 (file)
new mode 100755 (executable)
index 8bafa10..a1dbe3c
@@ -1,4 +1,14 @@
 #!/usr/bin/perl
 #!/usr/bin/perl
+# This helper script makes it easy to use a passwd or group file to map
+# values in a LOCAL transfer.  For instance, if you mount a backup that
+# does not have the same passwd setup as the local machine, you can do
+# a copy TO the backup area as follows and get the differing ID values
+# mapped just like a remote transfer TO the backed-up machine would do:
+#
+# rsync -av --usermap=`mapto /mnt/backup/etc/passwd` \
+#           --groupmap=`mapto /mnt/backup/etc/group` \
+#           /some/src/ /mnt/backup/some/dest/
+
 while (<>) {
     push @_, "$1:$2" if /^(\w+):[^:]+:(\d+)/;
 }
 while (<>) {
     push @_, "$1:$2" if /^(\w+):[^:]+:(\d+)/;
 }