Bug 204450 - /etc/init.d/tomcat5 start gives "-mindepth" error on find
Summary: /etc/init.d/tomcat5 start gives "-mindepth" error on find
Keywords:
Status: CLOSED WORKSFORME
Alias: None
Product: Fedora
Classification: Fedora
Component: tomcat5
Version: 5
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Vivek Lakshmanan
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2006-08-29 06:54 UTC by Bryce Nesbitt
Modified: 2008-01-05 13:10 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2008-01-05 13:10:29 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

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.


Note You need to log in before you can comment on or make changes to this bug.