diff options
author | Wayne Davison <wayned@samba.org> | 2014-09-04 13:06:13 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2014-09-04 13:44:50 -0700 |
commit | aca7dd3bff75e7acd3912e0e9e084b350ee04ee8 (patch) | |
tree | be442380e02a2495ef5092350b884c3fee819775 /packaging/cull_options | |
parent | bc55aa04dfe77d2b680eab2ea74b46f8a29e5ccb (diff) | |
download | rsync-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-x | packaging/cull_options | 13 |
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; |