You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2016/10/21 23:01:48 UTC

lucene-solr:branch_6x: SOLR-9325: Remove unnecessary search/replace in installer script

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x e744feeeb -> b907e5692


SOLR-9325: Remove unnecessary search/replace in installer script

(cherry picked from commit c9cf0ef)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/b907e569
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b907e569
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b907e569

Branch: refs/heads/branch_6x
Commit: b907e56923ef2619d619a31c92dd00d3b6598349
Parents: e744fee
Author: Jan H�ydahl <ja...@apache.org>
Authored: Sat Oct 22 01:00:48 2016 +0200
Committer: Jan H�ydahl <ja...@apache.org>
Committed: Sat Oct 22 01:01:42 2016 +0200

----------------------------------------------------------------------
 solr/bin/install_solr_service.sh | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/b907e569/solr/bin/install_solr_service.sh
----------------------------------------------------------------------
diff --git a/solr/bin/install_solr_service.sh b/solr/bin/install_solr_service.sh
index 6b9df79..a23612f 100755
--- a/solr/bin/install_solr_service.sh
+++ b/solr/bin/install_solr_service.sh
@@ -344,8 +344,6 @@ if [ -f "$SOLR_VAR_DIR/log4j.properties" ]; then
   echo -e "\n$SOLR_VAR_DIR/log4j.properties already exists. Skipping install ...\n"
 else
   cp "$SOLR_INSTALL_DIR/server/resources/log4j.properties" "$SOLR_VAR_DIR/log4j.properties"
-  sed_expr="s#solr.log=.*#solr.log=\${solr.solr.home}/../logs#"
-  sed -i -e "$sed_expr" "$SOLR_VAR_DIR/log4j.properties"
 fi
 chown -R "$SOLR_USER:" "$SOLR_VAR_DIR"
 find "$SOLR_VAR_DIR" -type d -print0 | xargs -0 chmod 0750