Saludos :D

Yo tome prestado el script de inicio de tomcat :$


----Cree el archivo plone----
#!/bin/bash
#
# Plone         This shell script takes care of starting and stopping
#               Plone.
#
# chkconfig: 2345 80 30
# description: Plone Rules
# processname: plone

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

RETVAL=0
prog="Plone"

start() {
        # Start daemons.
        echo -n $"Starting $prog: "
###Aqui la ruta de instalacion de plone hasta antes de la carpeta bin
        cd /usr/local/Plone/instancia/
        bin/plonectl start
        }

stop() {
        # Stop daemons.
        echo -n $"Shutting down $prog: "
###Aqui la ruta de instalacion de plone hasta antes de la carpeta bin
        cd /usr/local/Plone/instancia/
        bin/plonectl stop
        }

status() {
        # Status Plone Pruebas.
        estatus=`ps waux | grep plone | grep -v grep | wc -l`

        if [ $estatus  >  0  ]
        then
                echo "Esta Arriba Plone"
        else
                echo "Esta Abajo Plone"
        fi
        }




# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  restart|reload)
        ###Aqui la ruta de instalacion de plone hasta antes de la carpeta
bin
        cd /usr/local/Plone/instancia/
        bin/plonectl restart

        RETVAL=$?
        ;;
  condrestart)
        if [ -f /var/lock/subsys/plone ]; then
            stop
            start
            RETVAL=$?
        fi
        ;;
  status)
        status
        RETVAL=$?
        ;;
  *)
        echo $"Usage: $0 {start|stop|restart|condrestart|status}"
        exit 1
esac
exit $RETVAL
---------------

Lo copie en /etc/init.d/
Ejecute chkconfig plone on
Y revise con chkconfig --list plone
plone           0:off   1:off   2:on    3:on    4:on    5:on    6:off

Este lo use para un redhat





-- 
View this message in context: 
http://usarios-plone.2295514.n2.nabble.com/Consulta-arranque-automatizado-tp5259988p5288917.html
Sent from the Usarios Plone mailing list archive at Nabble.com.
_______________________________________________
Usuarios-Plone mailing list
Usuarios-Plone@lists.plone.org
http://lists.plone.org/mailman/listinfo/usuarios-plone

Responder a