summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--htroot/ConfigUpdate_p.html2
-rw-r--r--htroot/ConfigUpdate_p.java3
2 files changed, 5 insertions, 0 deletions
diff --git a/htroot/ConfigUpdate_p.html b/htroot/ConfigUpdate_p.html
index 2b8974697..09de4690c 100644
--- a/htroot/ConfigUpdate_p.html
+++ b/htroot/ConfigUpdate_p.html
@@ -118,6 +118,8 @@
<p>manual update:<br/>apt-get update &amp;&amp; apt-get install yacy</p>
<p>automatic update: add the following line to /etc/crontab<br/>0 6 * * * root apt-get update &amp;&amp; apt-get -y --force-yes install yacy</p>
::
+ <p>YaCy has been installed to the Program Files directory. Automatic update is not possible.<br/>Download and install the latest version from the web page <a href="http://www.yacy.net/">http://www.yacy.net/</a></p>
+ ::
#(/candeploy)#
#%env/templates/footer.template%#
diff --git a/htroot/ConfigUpdate_p.java b/htroot/ConfigUpdate_p.java
index 8f156ac96..71bcdd7d5 100644
--- a/htroot/ConfigUpdate_p.java
+++ b/htroot/ConfigUpdate_p.java
@@ -55,6 +55,9 @@ public class ConfigUpdate_p {
if (yacyBuildProperties.isPkgManager()) {
prop.put("candeploy", "2");
return prop;
+ } else if (OS.isWindows && sb.appPath.toString().indexOf("Program Files") > -1) {
+ prop.put("candeploy", "3");
+ return prop;
} else if (OS.canExecUnix || OS.isWindows) {
// we can deploy a new system with (i.e.)
// cd DATA/RELEASE;tar xfz $1;cp -Rf yacy/* ../../;rm -Rf yacy