I've got a build.gradle task that works like a champ on my dev box at producing a properties file that records the name of the machine that the build was generated on. The logic is simple enough...
def hostname = InetAddress.getLocalHost().getHostName();
On my dev box this always produces the same value as if I did hostname from the bash shell.
bobk-mbp:DM_Server bobk$ hostname
bobk-mbp.local
On our jenkins CI server, however, bash hostname returns one thing, but my call to InetAddress.getLocalHost().getHostName(); returns something else. What needs to change on the jenkins machine to get these two returning the same value?