Changeset 634
- Timestamp:
- Oct 17, 2007 10:44:01 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/testScripts/NBuserConfig.py
r631 r634 15 15 # done. If the directory does not exist, it will be created. 16 16 #---------------------------------------------------------------------- 17 NIGHTLY_BUILD_ROOT_DIR = 'xxx' 17 18 if gethostname()=='ubuntu' : 18 19 NIGHTLY_BUILD_ROOT_DIR = '/home/jp/COIN' 19 20 elif gethostname()=='math01.watson.ibm.com' : 20 21 NIGHTLY_BUILD_ROOT_DIR = '/u/jpfasano/COIN/nbTest' 22 elif gethostname()=='JPF4' : 23 NIGHTLY_BUILD_ROOT_DIR = 'd:/nbTest' 21 24 elif gethostname()=='kmartin-maclt.local' : 22 25 NIGHTLY_BUILD_ROOT_DIR = '/Users/kmartin/COIN' 23 else : 24 NIGHTLY_BUILD_ROOT_DIR = 'xxx' 26 25 27 26 28 #---------------------------------------------------------------------- … … 28 30 # If svn is in the default path, then this can be set to an empty string 29 31 #---------------------------------------------------------------------- 32 SVNPATH_PREFIX='' 30 33 if gethostname()=='math01.watson.ibm.com' : 31 34 SVNPATH_PREFIX='/gsa/yktgsa/projects/o/oslos/local/bin' 35 elif gethostname()=='JPF4' : 36 SVNPATH_PREFIX = r'e:\cygwin\bin' 32 37 elif gethostname()=='kmartin-maclt.local' : 33 SVNPATH_PREFIX='/usr/local/bin/' 34 else : 35 SVNPATH_PREFIX='' 38 SVNPATH_PREFIX='/usr/local/bin' 39 36 40 37 41 … … 56 60 # project manager. 57 61 #---------------------------------------------------------------------- 58 if gethostname()=='ubuntu' or gethostname()=='math01.watson.ibm.com': 62 SMTP_SERVER_NAME = 'xxx.smtp.server.name' 63 SMTP_SERVER_PORT =25 64 SMTP_SSL_SERVER = 0 65 SMTP_USER_NAME = 'xxxx' 66 SMTP_PASSWORD_FILENAME = '/xxx/yyy/smtpPassWordFile' 67 68 SENDER_EMAIL_ADDR='xxx _AT_ yyyy _DOT_ edu' 69 MY_EMAIL_ADDR='xxx _AT_ yyyy _DOT_ edu' 70 SEND_MAIL_TO_PROJECT_MANAGER=0 71 if gethostname()=='ubuntu' or \ 72 gethostname()=='math01.watson.ibm.com' or\ 73 gethostname()=='JPF4' : 59 74 #SMTP_SERVER_NAME = 'outgoing.verizon.net' 60 75 #SMTP_SERVER_PORT = 25 … … 68 83 if gethostname()=='ubuntu' : 69 84 SMTP_PASSWORD_FILENAME = '/home/jp/bin/smtpPwFile' 85 elif gethostname()=='math01.watson.ibm.com' : 86 SMTP_PASSWORD_FILENAME = '/u/jpfasano/COIN/bin/smtpPwFile' 70 87 else : 71 SMTP_PASSWORD_FILENAME = ' /u/jpfasano/COIN/bin/smtpPwFile'88 SMTP_PASSWORD_FILENAME = 'c:\smtpPwFile.txt' 72 89 73 90 SENDER_EMAIL_ADDR='jpfasano _AT_ verizon _DOT_ net' … … 84 101 MY_EMAIL_ADDR='kipp _DOT_ martin _AT_ chicagogsb _DOT_ edu' 85 102 SEND_MAIL_TO_PROJECT_MANAGER=0 86 else :87 SMTP_SERVER_NAME = 'xxx.smtp.server.name'88 SMTP_SERVER_PORT =2589 SMTP_SSL_SERVER = 090 SMTP_USER_NAME = 'xxxx'91 SMTP_PASSWORD_FILENAME = '/xxx/yyy/smtpPassWordFile'92 103 93 SENDER_EMAIL_ADDR='xxx _AT_ yyyy _DOT_ edu'94 MY_EMAIL_ADDR='xxx _AT_ yyyy _DOT_ edu'95 SEND_MAIL_TO_PROJECT_MANAGER=096 104 97 105
Note: See TracChangeset
for help on using the changeset viewer.