Guest User

Untitled

a guest
Nov 27th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. # Configuration you can edit
  2.  
  3.  
  4. # Where to store backup locally
  5. backupDir='/tmp/backups'; # absolute path, without final slash
  6.  
  7. # Where to store backup remotely
  8. ftpHost='localhost'
  9. ftpUser='user'
  10. ftpUserPassword='password'
  11. ftpSpaceUsageFile='/.banner'; # whille be downloaded and stored in report dir
  12.  
  13. # Which databases to backup
  14. databasesToBackup='first second third';
  15.  
  16. # Which directories to backup
  17. directoriesToBackup='/tmp/first /tmp/second /tmp/third';
  18.  
  19. # About full/incremental files backup
  20. weeklyDirName='weekly';
  21. dailyDirName='daily';
  22. weeklyBackupDay=1; # 1=monday, .
  23. dailyBackupLifetime=15; # number of days ; over this age, daily backups are removed
  24. incrementalHistoryDir="/tmp/ih";
  25.  
  26. # folders and files names date formats ("full" used when "short" not possible)
  27. shortDateFormat='%Y%m%d';
  28. fullDateFormat='%Y%m%d-%H%M%S';
  29.  
  30. # Reports configuration
  31. ftpLogDir='/tmp';
  32. reportsDir='/tmp';
  33. reportEmailAddress='root';
  34. reportSubject="[Report] "`hostname`;
  35.  
  36.  
  37. # configuration for wikizamUpdater
  38. gitFolder="/tmp/git/seizamcore"; # absolute path, without final slash
  39. wikizamFolder="/tmp/wikizam"; # absolute path, without final slash
  40. apacheStopOption="graceful-stop"; # this stop option can differ depending of apache version
Add Comment
Please, Sign In to add comment