-
vic_norman committed revision 22 to the DMUCS SVN repository, changing 1 files.
2009-09-15 14:02:45 UTC by vic_norman
-
vic_norman committed revision 21 to the DMUCS SVN repository, changing 16 files.
2009-09-15 13:22:30 UTC by vic_norman
-
Isn't this a duplicate of Bug #1518099?
Which version of dmucs did you have a problem with?.
2009-08-29 08:30:05 UTC by papadopo
-
vic_norman committed revision 20 to the DMUCS SVN repository, changing 8 files.
2009-08-28 20:37:25 UTC by vic_norman
-
vic_norman changed the public information on the DMUCS project.
2009-01-07 17:49:32 UTC by vic_norman
-
This change stops monitor from crashing when hostnames do not have '.' in them:
replace code under "case 'H':" in monitor.cc with this:
case 'H': {
std::string ipstr;
int state;
/* Read in ': ' */
instr.ignore(); // eat ':'
instr >> ipstr >> state;
std::string hostname = ip.
2008-11-19 16:44:55 UTC by nobody
-
Would be good if (like distcc) the hosts-info file supports ssh hosts using the '@' symbol.
E.g:
@machine1 8 10
The only visible difference this makes is that gethost should set the DISTCC_HOST env variable appropriately to e.g. @machine1/100
As a workaround I just changed gethost.cc to always do this:
tmp
2008-11-19 16:42:21 UTC by nobody
-
list distcc for example; would be great if loadavg was started automatically on all build machines.
2008-11-19 16:38:56 UTC by nobody
-
dmucs crashes when remhost is called from a node not know to the server.
[Tue Sep 2 13:06:47 2008] Hosts Served: 0 Max/Avail: 0/0
machname 192.168.33.16, state down, dprop ''
terminate called after throwing an instance of 'DmucsHostNotFound'
what(): 17DmucsHostNotFound
This can allow users to accidentally or maliciously disable the server.
2008-09-02 17:08:09 UTC by dgtlrift
-
configure doesn't look look for or detect that for Solaris, it needs to use the following LDFLAGS:
-lnsl -lsocket
Workaround:
After configure, modify the line in Makefile that reads:
LDFLAGS = -pthread
to:
LDFLAGS = -pthread -lnsl -lsocket.
2008-09-02 12:58:32 UTC by dgtlrift