Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of Ticket #453, comment 2


Ignore:
Timestamp:
Jun 13, 2016, 4:46:35 PM (8 years ago)
Author:
lferran
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #453, comment 2

    initial v1  
    1 == /var/svn/game ==
     1Repositories with post-commit hook:
     2* biomed: email
     3* data: email + svn backup
     4* datavis: email + svn backup
     5* downloads: email
     6* game: email + svn backup + doxygen if it was a trunk commit
     7* netflow: no hooks
     8* ogre: email
     9* orxonox: email + svn backup + doxygen if it was a trunk commit
     10* orxonox_closed: email + svn backup
     11* subprojects: email
     12* vseth_projects: email
     13* webdev: email + svn backup + svn update
     14
     15== biomed ==
     16
     17Only a ''post-commit'' hook sending an email to the mailing list.
     18{{{#!sh
     19REPOS="$1"
     20REV="$2"
     21
     22/var/svn/scripts/commit-email.pl "$REPOS" "$REV" biomed@orxonox.ethz.ch
     23}}}
     24
     25== data ==
     26
     27Post-commit only: send email to mailing list and
     28{{{#!sh
     29REPOS="$1"
     30REV="$2"
     31
     32# Send commit email to mailing list
     33/var/svn/scripts/commit-email.pl "$REPOS" "$REV" orxonox-commit@orxonox.net -s data
     34
     35# Backup repository script
     36/var/svn/scripts/svnbackup --rep data dump all
     37
     38# What are we doing here?
     39cd /var/www/orxonox/files/data; sudo -u orxonox /usr/bin/svn up
     40}}}
     41
     42== game ==
    243The ''game'' repository only has a '''post-commit''' hook.
    344