I have a very strange problem, I'm sure is configuration related but I 
can't figure out what to change to fix it.

I have a Jenkins server (Linux) pushing builds to a Jenkins slave 
(Windows). The windows slave has been configured a number of ways, but 
currently is configured using "Let Jenkins control this Windows slave as a 
Windows service" with a particular host and authentication information, all 
should be correct.

However, this slave is running on a different host. This can be verified 
when I run a script to dump the ipconfig output:


import java.io.*;  

Process p = Runtime.getRuntime().exec("ipconfig /all");
BufferedReader bin = new BufferedReader(new 
InputStreamReader(p.getInputStream()));  
String line = null;
String result = "";
while ((line = bin.readLine()) != null) {  
    result += line + '\n';
}  
throw new Exception(result)


What is going on and how can I tell Jenkins to use the correct host?

Thanks,
-Keith

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to