From: Erik Brakkee Date: Sat, 22 Aug 2009 11:28:55 +0000 (+0000) Subject: Now using hardlinks because those will always resolve correctly on a X-Git-Tag: wamblee-utils-0.7~667 X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=873ec34510f84cb60f75736b4ab7512a1db82ed9;p=utils Now using hardlinks because those will always resolve correctly on a client that mounts the directory using NFS --- diff --git a/mythtv/monitor/src/main/java/org/wamblee/mythtv/LinkStructure.java b/mythtv/monitor/src/main/java/org/wamblee/mythtv/LinkStructure.java index 01488be4..4d3be364 100644 --- a/mythtv/monitor/src/main/java/org/wamblee/mythtv/LinkStructure.java +++ b/mythtv/monitor/src/main/java/org/wamblee/mythtv/LinkStructure.java @@ -207,7 +207,7 @@ public class LinkStructure implements Listener { private void createSymLink(String aTarget, String aSource) { try { SimpleProcess process = new SimpleProcess(_linkDir, new String[] { - "ln", "-s", aTarget, aSource }); + "ln", aTarget, aSource }); process.run(); LOG.info("Created symlink " + aSource + " -> " + aTarget); } catch (IOException e) {