/[adm]/puppet/modules/subversion/templates/pre-revprop-change
ViewVC logotype

Contents of /puppet/modules/subversion/templates/pre-revprop-change

Parent Directory Parent Directory | Revision Log Revision Log


Revision 809 - (show annotations) (download)
Sun Jan 16 13:15:33 2011 UTC (13 years, 3 months ago) by misc
File size: 256 byte(s)
add hook to allow to change svn:log property
1 #!/bin/sh
2
3 # script taken from svn example hooks
4
5 REPOS="$1"
6 REV="$2"
7 USER="$3"
8 PROPNAME="$4"
9 ACTION="$5"
10
11 if [ "$ACTION" = "M" -a "$PROPNAME" = "svn:log" ]; then exit 0; fi
12
13 echo "Changing revision properties other than svn:log is prohibited" >&2
14 exit 1
15

  ViewVC Help
Powered by ViewVC 1.1.30