Changes between Version 3 and Version 4 of TracHotBackupScript


Ignore:
Timestamp:
Nov 9, 2015, 12:13:31 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracHotBackupScript

    v3 v4  
    2222}}}
    2323
    24 
    2524== Bugs/Feature Requests
    2625
     
    2928
    3029If you have any issues, create a
    31 [http://trac-hacks.org/newticket?component=TracHotBackupScript&owner=kcalcagno new ticket].
     30[/newticket?component=TracHotBackupScript new ticket].
    3231
    3332[[TicketQuery(component=TracHotBackupScript&group=type,format=progress)]]
     
    3534== Download
    3635
    37 Download the zipped source from [download:trachotbackupscript here], or just grab the script itself [http://trac-hacks.org/svn/trachotbackupscript/anyrelease/trac-hot-backup.py here].
     36Download the zipped source from [export:trachotbackupscript here], or fetch the script itself [/svn/trachotbackupscript/anyrelease/trac-hot-backup.py here].
    3837
    3938== Source
    4039
    41 You can check out TracHotBackupScript from [http://trac-hacks.org/svn/trachotbackupscript/anyrelease here] using Subversion, or [source:trachotbackupscript/anyrelease browse the source] with Trac.
     40You can check out TracHotBackupScript from [/svn/trachotbackupscript/anyrelease here] using Subversion, or [source:trachotbackupscript/anyrelease browse the source] with Trac.
    4241
    4342== Examples
    4443
    45 Back up the project at /var/trac/myproj to /nfs/backup/trac/myproj-YYYY-mm-dd-HHMM:
     44 1. Back up the project at `/var/trac/myproj` to `/nfs/backup/trac/myproj-YYYY-mm-dd-HHMM`:
    4645
    47 {{{
    48 #!sh
     46 {{{#!sh
    4947trac-hot-backup.py /var/trac/myproj /nfs/backup/trac
    5048}}}
    5149
    52 Back up the project at /var/trac/myproj to /nfs/backup/trac/myproj-YYYY-mm-dd-HHMM.tar.gz and delete all but the seven most recent backups, including the one just created:
     50 2. Back up the project at `/var/trac/myproj` to `/nfs/backup/trac/myproj-YYYY-mm-dd-HHMM.tar.gz` and delete all but the 7 most recent backups, including the one just created:
    5351
    54 {{{
    55 #!sh
     52 {{{#!sh
    5653trac-hot-backup.py --archive-type=gz --num-backups=7 /var/trac/myproj /nfs/backup/trac
    5754}}}