On Sun, 18 Jul 2004, alex wrote: > Hi all, > > I'm using xmail on a slackware 10 server and I've got a problem with the > startup script i think :) To start Xmail i've edited my /etc/rc.d/rc.M > file like this: > > -------------8<--------------- > # Start the MySQL database: > if [ -x /etc/rc.d/rc.mysqld ]; then > . /etc/rc.d/rc.mysqld start > fi > > # Start Apache web server: > if [ -x /etc/rc.d/rc.httpd ]; then > . /etc/rc.d/rc.httpd start > fi > > # Start the XMail Server > if [ -x /etc/rc.d/rc.xmail ]; then > . /etc/rc.d/rc.xmail start > fi
Using the '.' you "source" the script and you make it exec in the context of your startup script. When xmail does the exec, your script stops. - Davide - To unsubscribe from this list: send the line "unsubscribe xmail" in the body of a message to [EMAIL PROTECTED] For general help: send the line "help" in the body of a message to [EMAIL PROTECTED]
