Better definitions in -h

This commit is contained in:
Jon 2021-11-19 21:43:40 -05:00
parent dc761fbc2e
commit 7d1ff1c021
No known key found for this signature in database
GPG key ID: 9665BA6CF5DC2671
2 changed files with 5 additions and 3 deletions

View file

@ -74,5 +74,5 @@ recyclebin:
enabled: true enabled: true
#<OPTIONAL> empty_after_x_days var: Will automatically remove all files and folders in recycle bin after x days. #<OPTIONAL> empty_after_x_days var: Will automatically remove all files and folders in recycle bin after x days.
# If this variable is not defined it, the RecycleBin will never be emptied. # If this variable is not defined it, the RecycleBin will never be emptied.
# Setting variable to 0 will delete files immediately. # Setting this variable to 0 will delete files immediately.
empty_after_x_days: 60 empty_after_x_days: 60

View file

@ -65,7 +65,7 @@ parser.add_argument('-ro', '--rem-orphaned',
const='rem_orphaned', const='rem_orphaned',
help='Use this if you would like to remove orphaned files from your `root_dir` directory that are not referenced by any torrents.' help='Use this if you would like to remove orphaned files from your `root_dir` directory that are not referenced by any torrents.'
' It will scan your `root_dir` directory and compare it with what is in Qbitorrent. Any data not referenced in Qbitorrent will be moved into ' ' It will scan your `root_dir` directory and compare it with what is in Qbitorrent. Any data not referenced in Qbitorrent will be moved into '
' `/data/torrents/orphaned_data` folder for you to review/delete.') ' `/root_dir/orphaned_data` folder for you to review/delete.')
parser.add_argument('-tnhl', '--tag-nohardlinks', parser.add_argument('-tnhl', '--tag-nohardlinks',
dest='tag_nohardlinks', dest='tag_nohardlinks',
action='store_const', action='store_const',
@ -77,7 +77,9 @@ parser.add_argument('-er', '--empty-recycle',
dest='empty_recycle', dest='empty_recycle',
action='store_const', action='store_const',
const='empty_recycle', const='empty_recycle',
help='Use this to empty your Reycle Bin folder based on x number of days defined in the config.') help='Use this to empty your Reycle Bin folder based on x number of days defined in the config.'
'Setting "empty_after_x_days" variable to 0 will delete files immediately.'
'If this variable is not defined the RecycleBin will never be emptied.')
parser.add_argument('--dry-run', parser.add_argument('--dry-run',
dest='dry_run', dest='dry_run',
action='store_const', action='store_const',