p4replicate.ini #2

  • //
  • guest/
  • robert_cowham/
  • perforce/
  • utils/
  • p4replicate/
  • p4replicate.ini
  • View
  • Commits
  • Open Download .zip Download (1 KB)
# I am a configuration file for p4replicate.rb

src_p4port=1666
src_p4client=repl-client-src
src_p4clientroot=c:\temp\repl-client-src
src_p4user=bruno
# Comment out if no password
# src_p4password=


dest_p4port=1666
dest_p4client=repl-client-dest
dest_p4user=bruno
# Comment out if no password
#dest_p4password=bruno

# The following is used to record which changelist we have processed.
# Was originally src_counter but users often have more control over dest than src
dest_counter=p4replicate

# The next 2 fields are required if email is to be used for notification of success or failure
mail_server=smtp.somewhere.uk
mail_from=rc@vaccaperna.co.uk
# Comment out either of the following two fields to not receive email notification
# Multiple addresses should be comma seperated
#mail_success_to=success@vaccaperna.co.uk
#mail_fail_to=fail@vaccaperna.co.uk,fail@somehwere.else

# Note that this is a standard Perforce view but LHS is source repository 
# and RHS is destination repository
# All the normal Perforce wildcards can be used.
# If there are spaces in paths then use quotes.
view:
   //depot/Jam/MAIN/src/*.h //depot/repl/Jam/MAIN/*.h
#   "//depot/repl/src two/*" "//newdepot/repl/dest 2/*"
# Change User Description Committed
#2 7188 Robert Cowham Optimize the fstats into a single call.
Rename src_counter to dest-counter
#1 6447 Robert Cowham Updated to use official P4Ruby