Bug 204450

Summary: /etc/init.d/tomcat5 start gives "-mindepth" error on find
Product: [Fedora] Fedora Reporter: Bryce Nesbitt <bryce1>
Component: tomcat5Assignee: Vivek Lakshmanan <viveklak>
Status: CLOSED WORKSFORME QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 5CC: dblistsub-redzilla
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2008-01-05 13:10:29 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Bryce Nesbitt 2006-08-29 06:54:44 UTC
# /etc/init.d/tomcat5 start
Starting tomcat5: find: warning: you have specified the -mindepth option after a
non-option argument -type, but options are not positional (-mindepth affects
tests specified before it as well as those specified after it).  Please specify
options before other arguments.

find: warning: you have specified the -maxdepth option after a non-option
argument -type, but options are not positional (-maxdepth affects tests
specified before it as well as those specified after it).  Please specify
options before other arguments.

Using CATALINA_BASE:   /usr/share/tomcat5
Using CATALINA_HOME:   /usr/share/tomcat5
Using CATALINA_TMPDIR: /usr/share/tomcat5/temp
Using JRE_HOME:
                                                           [  OK  ]

Comment 1 Davide Bolcioni 2006-10-25 15:05:58 UTC
The problem is in /usr/share/tomcat5/bin/relink, where

for webapp in $(find /var/lib/tomcat5/webapps -type d -mindepth 1 -maxdepth 2) ; do
    [ -d "$webapp/WEB-INF/lib" ] && rebuild-jar-repository $webapp/WEB-INF/lib
done

should be

for webapp in $(find /var/lib/tomcat5/webapps -mindepth 1 -maxdepth 2 -type d) ; do
    [ -d "$webapp/WEB-INF/lib" ] && rebuild-jar-repository $webapp/WEB-INF/lib
done

Comment 2 Devrim GUNDUZ 2008-01-05 13:10:29 UTC
This is fixed in the latest releases, closing.