Index: trunk/ippdor/deployment/deploy.py
===================================================================
--- trunk/ippdor/deployment/deploy.py	(revision 32874)
+++ trunk/ippdor/deployment/deploy.py	(revision 32877)
@@ -4,4 +4,11 @@
 Utility executable for IPP Condor deployment
 """
+def hostname():
+    """
+    Get the host name
+    >>> print hostname()
+    neverland
+    """
+    return socket.gethostbyaddr(socket.gethostname())[0].split('.')[0]
 
 # Default values
@@ -10,7 +17,12 @@
     This class contains all default values for the IPP Condor deployment
     """
-    svnSourceUrl          = 'file:///home/schastel/svnrepo/ippdor/trunk/src'
-    targetDirectory       = '/home/schastel/local/share/python/ipp'
-    targetBinaryDirectory = '/home/schastel/local/bin'
+    if hostname().startswith('ipp'): # Production cluster
+        svnSourceUrl          = 'https://svn.pan-starrs.ifa.hawaii.edu/repo/ipp/trunk/ippdor'
+        targetDirectory       = '/home/panstarrs/ippdor/local/share/python/ipp'
+        targetBinaryDirectory = '/home/panstarrs/ippdor/local/bin'
+    else:
+        svnSourceUrl          = 'file:///home/schastel/svnrepo/ippdor/trunk/src'
+        targetDirectory       = '/home/schastel/local/share/python/ipp'
+        targetBinaryDirectory = '/home/schastel/local/bin'
 
     def __init__(self):
