]
Galder Zamarreño updated ISPN-4476:
-----------------------------------
Affects Version/s: 6.0.2.Final
infinispan-server.sh uses wrong condition for
/etc/rc.d/init.d/functions
------------------------------------------------------------------------
Key: ISPN-4476
URL:
https://issues.jboss.org/browse/ISPN-4476
Project: Infinispan
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Server
Affects Versions: 6.0.2.Final, 7.0.0.Alpha4
Reporter: Takayoshi Kimura
Assignee: Takayoshi Kimura
Fix For: 7.0.0.Alpha5, 7.0.0.Final
In infinispan-server.sh it checks executable bit on /etc/rc.d/init.d/functions:
{code}
if [ -x /etc/rc.d/init.d/functions ]; then
{code}
but the /etc/rc.d/init.d/functions is not executable, it always false.
It should be "-r".