hostname now set by socket

This commit is contained in:
Bryan Herman 2014-04-10 16:35:10 -04:00
parent b7dcf9f1b3
commit e57453c098

View file

@ -6,6 +6,7 @@ import os
import shutil
import re
import glob
import socket
from subprocess import call
from collections import OrderedDict
from optparse import OptionParser
@ -232,7 +233,7 @@ pwd = os.environ['PWD']
ctest_vars = {
'source_dir' : pwd + '/../src',
'build_dir' : pwd + '/build',
'host_name' : 'neutronbalance',
'host_name' : socket.gethostname(),
'dashboard' : dash,
'submit' : submit,
'update' : update,