Advertisement
atkuzmanov

rclone config sanitized 1

Aug 14th, 2024
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.89 KB | None | 0 0
  1. ################################ Working example:
  2. # [localsrc1]
  3. # type = local
  4. # # nounc = true
  5. # # encoding = Asterisk,BackQuote,BackSlash,Colon,CrLf,Ctl,Del,Dollar,Dot,DoubleQuote,Hash,InvalidUtf8,LeftCrLfHtVt,LeftPeriod,LeftSpace,LeftTilde,LtGt,P>
  6. # # encoding = None
  7. ################################
  8. # [localdest1]
  9. # type = local
  10. # encoding = Asterisk,BackQuote,BackSlash,Colon,CrLf,Ctl,Del,Dollar,Dot,DoubleQuote,Hash,InvalidUtf8,LeftCrLfHtVt,LeftPeriod,LeftSpace,LeftTilde,LtGt,Per>
  11. # # nounc = true
  12. # # encoding = InvalidUtf8,Colon
  13. # # encoding = Colon,InvalidUtf8
  14. ################################
  15. ### Source directories
  16. # SRC_DIRS=(
  17. #   "localsrc1:/mnt/tns-google-drive-smb"
  18. #   "localsrc2:/mnt/tns-maindatads-smb"
  19. #   "localsrc3:/mnt/tns-app-configs-smb"
  20. #   "localsrc4:/mnt/tns-proxbkps-ds-1"
  21. # )
  22. [localsrc1]
  23. type = local
  24.  
  25. # nounc = true
  26. # encoding = Asterisk,BackQuote,BackSlash,Colon,CrLf,Ctl,Del,Dollar,Dot,DoubleQuote,Hash,InvalidUtf8,LeftCrLfHtVt,LeftPeriod,LeftSpace,LeftTilde,LtGt,Percent,Pipe,Question,RightCrLfHtVt,RightPeriod,RightSpace,Semicolon,SingleQuote,Slash,SquareBracket
  27. # encoding = None
  28. [localsrc2]
  29. type = local
  30.  
  31. [localsrc3]
  32. type = local
  33.  
  34. [localsrc4]
  35. type = local
  36.  
  37. ################################
  38. # Destination directories for single storage units
  39. # DEST_DIRS_SINGLE_STORE=(
  40. #   "localdest4:/mnt/sd25-4tb-bkp4-mnt4"
  41. #   "localdest1:/mnt/hd35-6tb-bkp1-mnt1"
  42. # )
  43. [localdest1]
  44. type = local
  45. encoding = Asterisk,BackQuote,BackSlash,Colon,CrLf,Ctl,Del,Dollar,Dot,DoubleQuote,Hash,InvalidUtf8,LeftCrLfHtVt,LeftPeriod,LeftSpace,LeftTilde,LtGt,Percent,Pipe,Question,RightCrLfHtVt,RightPeriod,RightSpace,Semicolon,SingleQuote,Slash,SquareBracket
  46.  
  47. # nounc = trues
  48. # encoding = InvalidUtf8,Colon
  49. # encoding = Colon,InvalidUtf8
  50. [localdest4]
  51. type = local
  52. encoding = Asterisk,BackQuote,BackSlash,Colon,CrLf,Ctl,Del,Dollar,Dot,DoubleQuote,Hash,InvalidUtf8,LeftCrLfHtVt,LeftPeriod,LeftSpace,LeftTilde,LtGt,Percent,Pipe,Question,RightCrLfHtVt,RightPeriod,RightSpace,Semicolon,SingleQuote,Slash,SquareBracket
  53.  
  54. ################################
  55. # Destination directories for multiple storage units
  56. # DEST_DIRS_MULTI_STORE=(
  57. #   "localdest2:/mnt/hd25-2tb-bkp1-mnt1"
  58. #   # "localdest3:/mnt/hd25-2tb-bkp2-mnt2"
  59. #   "localdest3:/mnt/hd25-500-bkp1-mnt1"
  60. # )
  61. [localdest2]
  62. type = local
  63. encoding = Asterisk,BackQuote,BackSlash,Colon,CrLf,Ctl,Del,Dollar,Dot,DoubleQuote,Hash,InvalidUtf8,LeftCrLfHtVt,LeftPeriod,LeftSpace,LeftTilde,LtGt,Percent,Pipe,Question,RightCrLfHtVt,RightPeriod,RightSpace,Semicolon,SingleQuote,Slash,SquareBracket
  64.  
  65. [localdest3]
  66. type = local
  67. encoding = Asterisk,BackQuote,BackSlash,Colon,CrLf,Ctl,Del,Dollar,Dot,DoubleQuote,Hash,InvalidUtf8,LeftCrLfHtVt,LeftPeriod,LeftSpace,LeftTilde,LtGt,Percent,Pipe,Question,RightCrLfHtVt,RightPeriod,RightSpace,Semicolon,SingleQuote,Slash,SquareBracket
  68.  
  69. [tns-google-drive-smb-share]
  70. type = smb
  71. host = XXX
  72. user = XXX
  73. pass = XXX
  74.  
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement