Hi!

[root@teich root]# service xinetd
/etc/init.d/xinetd: line 114: syntax error: unexpected end of file

Somehow, bash doesn't like this line:

[ -e /usr/sbin/xinetd ] || { echo "/usr/sbin/xinetd doen't exist";exit 1 }

Changing the { to ( and the } to ) fixes it, like so:

[ -e /usr/sbin/xinetd ] || ( echo "/usr/sbin/xinetd doen't exist";exit 1 )

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:       http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die g�nstige Art an Linux Distributionen zu kommen
                Uptime: 0 hours 3 minutes

Reply via email to