summaryrefslogtreecommitdiff
path: root/packaging/cull_options
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2014-09-04 13:06:13 -0700
committerWayne Davison <wayned@samba.org>2014-09-04 13:44:50 -0700
commitaca7dd3bff75e7acd3912e0e9e084b350ee04ee8 (patch)
treebe442380e02a2495ef5092350b884c3fee819775 /packaging/cull_options
parentbc55aa04dfe77d2b680eab2ea74b46f8a29e5ccb (diff)
downloadrsync-aca7dd3bff75e7acd3912e0e9e084b350ee04ee8.tar.gz
rsync-aca7dd3bff75e7acd3912e0e9e084b350ee04ee8.tar.bz2
rsync-aca7dd3bff75e7acd3912e0e9e084b350ee04ee8.zip
Adding the long options that BackupPC likes to use.
Diffstat (limited to 'packaging/cull_options')
-rwxr-xr-xpackaging/cull_options13
1 files changed, 12 insertions, 1 deletions
diff --git a/packaging/cull_options b/packaging/cull_options
index 44b48d10..388d33f0 100755
--- a/packaging/cull_options
+++ b/packaging/cull_options
@@ -6,12 +6,23 @@ use strict;
our %short_no_arg;
our %short_with_num;
-our %long_opt = (
+our %long_opt = ( # These include some extra long-args that BackupPC uses:
+ 'block-size' => 1,
'daemon' => -1,
'debug' => 1,
'fake-super' => 0,
+ 'fuzzy' => 0,
+ 'group' => 0,
+ 'hard-links' => 0,
+ 'ignore-times' => 0,
'info' => 1,
+ 'links' => 0,
'log-file' => 3,
+ 'one-file-system' => 0,
+ 'owner' => 0,
+ 'perms' => 0,
+ 'recursive' => 0,
+ 'times' => 0,
);
our $last_long_opt;