You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ne...@apache.org on 2017/03/14 15:40:41 UTC

[06/13] incubator-trafficcontrol git commit: [TC-179] Add log4j.jar to list of files to symlink into /opt/tomcat/lib to ensure it's on Tomcat's CLASSPATH.

[TC-179] Add log4j.jar to list of files to symlink into /opt/tomcat/lib to ensure it's on Tomcat's CLASSPATH.


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/4d503290
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/4d503290
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/4d503290

Branch: refs/heads/master
Commit: 4d5032908aabbd88d411c0bba0355be58f7dc6a8
Parents: bd5b48e
Author: Jeff Elsloo <je...@cable.comcast.com>
Authored: Fri Mar 10 10:02:47 2017 -0700
Committer: Dave Neuman <ne...@apache.org>
Committed: Tue Mar 14 09:39:14 2017 -0600

----------------------------------------------------------------------
 traffic_router/core/src/main/scripts/postinstall.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/4d503290/traffic_router/core/src/main/scripts/postinstall.sh
----------------------------------------------------------------------
diff --git a/traffic_router/core/src/main/scripts/postinstall.sh b/traffic_router/core/src/main/scripts/postinstall.sh
index 5cee661..f1b9fc2 100644
--- a/traffic_router/core/src/main/scripts/postinstall.sh
+++ b/traffic_router/core/src/main/scripts/postinstall.sh
@@ -16,7 +16,7 @@
 chkconfig --add tomcat
 chkconfig tomcat on
 
-for JAR in traffic_router_connector.jar traffic_router_shared.jar jackson-core.jar jackson-annotations.jar jackson-databind.jar; do
+for JAR in traffic_router_connector.jar traffic_router_shared.jar jackson-core.jar jackson-annotations.jar jackson-databind.jar log4j.jar; do
     if [ ! -e /opt/tomcat/lib/$JAR ]; then
         echo "Creating symbolic link from /opt/traffic_router/lib/$JAR to /opt/tomcat/lib"
         /bin/ln -s /opt/traffic_router/lib/$JAR /opt/tomcat/lib/$JAR