Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] XMLFILE Error Jetty.sh

Unfortunately, the syntax we use...

  KEY+=(VAL)

Isn't that well supported on your version of Bash.
And it is used ALOT in the jetty.sh (not just those 2 lines)


--
Joakim Erdfelt <joakim@xxxxxxxxxxx>
Developer advice, services and support
from the Jetty & CometD experts


On Tue, Jul 9, 2013 at 2:39 PM, Joakim Erdfelt <joakim@xxxxxxxxxxx> wrote:
That is an old version of bash.

Try changing that line (#321) in the jetty.sh to

CONFIGS="$CONFIGS $XMLFILE"

Also line #327
From:
  CONFIGS+=($CONF)
To:
  CONFIGS="$CONFIGS $CONF"

--
Joakim Erdfelt <joakim@xxxxxxxxxxx>
Developer advice, services and support
from the Jetty & CometD experts


On Tue, Jul 9, 2013 at 1:57 PM, Blair Pallopson <blair.pallopson@xxxxxxxxxxxx> wrote:

$ bash --version

GNU bash, version 3.00.16(1)-release (sparc-sun-solaris2.10)

Copyright (C) 2004 Free Software Foundation, Inc.

 

$ echo $XMLFILE

 

$ ./jetty.sh check

./jetty.sh: line 321: syntax error near unexpected token `"$XMLFILE"'

./jetty.sh: line 321: `          CONFIGS+=("$XMLFILE")'

 

as you can see nothing is set in $XMLFILE prior.  I haven't modified the $XMLFILE in the .sh script either.

 

Blair Pallopson

DonRiver Inc.

www.donriver.com

m: 0437983981

blair.pallopson@xxxxxxxxxxxx

 

From: jetty-users-bounces@xxxxxxxxxxx [mailto:jetty-users-bounces@xxxxxxxxxxx] On Behalf Of Joakim Erdfelt
Sent: Tuesday, July 09, 2013 4:47 PM


To: JETTY user mailing list
Subject: Re: [jetty-users] XMLFILE Error Jetty.sh

 

Wow, SunOS 5.1 (aka Solaris 2.1)

The various shell script techniques within the jetty.sh might be too old for your OS.

 

What is your shell and version?

Also, do you have any values in $XMLFILE before the script runs?

 


--

Joakim Erdfelt <joakim@xxxxxxxxxxx>

Developer advice, services and support
from the Jetty & CometD experts

 

On Tue, Jul 9, 2013 at 1:35 PM, Blair Pallopson <blair.pallopson@xxxxxxxxxxxx> wrote:

thanks guys.  See below:

 

$ uname -a

SunOS au11qapagctels2 5.10 Generic_147440-07 sun4u sparc SUNW,Sun-Fire-15000

 

jetty-9.0.4.v20130625 - 25 June 2013

 

FYI - same issue happens on jetty 8 as well as I've tried both.

 

Blair Pallopson

DonRiver Inc.

www.donriver.com

m: 0437983981

blair.pallopson@xxxxxxxxxxxx

 

From: jetty-users-bounces@xxxxxxxxxxx [mailto:jetty-users-bounces@xxxxxxxxxxx] On Behalf Of Joakim Erdfelt
Sent: Tuesday, July 09, 2013 3:53 PM
To: JETTY user mailing list
Subject: Re: [jetty-users] XMLFILE Error Jetty.sh

 

We need more details about your environment.

 

We cannot replicate this error, and would appreciate some details so we can replicate it.


--

Joakim Erdfelt <joakim@xxxxxxxxxxx>

Developer advice, services and support
from the Jetty & CometD experts

 

On Tue, Jul 9, 2013 at 12:40 PM, Blair Pallopson <blair.pallopson@xxxxxxxxxxxx> wrote:

I'm receiving the following error when I run jetty.sh script:

 

hostname $ ./jetty.sh check

./jetty.sh: line 321: syntax error near unexpected token `"$XMLFILE"'

./jetty.sh: line 321: `          CONFIGS+=("$XMLFILE")'

hostname $

 

it is exactly this problem:

 

http://dev.eclipse.org/mhonarc/lists/jetty-users/msg01930.html

 

Did this get resolved? Any assistance would be appreciated.

 

Thanks in advance.


_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users

 


_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users

 


_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users




Back to the top