From 1ea72e2fe2ea4ff47fa604cdc3008ee053ff84cd Mon Sep 17 00:00:00 2001
From: John Gasper <jgasper@unicon.net>
Date: Thu, 26 Apr 2018 11:20:10 -0700
Subject: [PATCH] fixing issue with where Daemon libraries are copied too

---
 container_files/usr-local-bin/library.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/container_files/usr-local-bin/library.sh b/container_files/usr-local-bin/library.sh
index eb29be8b..15cf545c 100644
--- a/container_files/usr-local-bin/library.sh
+++ b/container_files/usr-local-bin/library.sh
@@ -53,7 +53,7 @@ prepDaemon() {
         cp -r /opt/grouper/conf/* $dest/conf/
     fi
     if [ -d "/opt/grouper/lib" ]; then
-        cp -r /opt/grouper/lib/* $dest/lib/
+        cp -r /opt/grouper/lib/* $dest/lib/custom/
     fi      
 }