>>>>> "MJ" == Mike Jagdis <[EMAIL PROTECTED]> writes:

MJ> If it's 0.99 you can expect problems - that was replaced by 0.99.1
MJ> fairly quickly. If you got it as an rpm then it's been repackaged.  If
MJ> it came from a commercial distribution then you need to talk to
MJ> them. None (yes, I counted twice) of the commercial guys have even
MJ> contributed a spec file or start up script. This list is not intended

Hm.  I've made .spec-file for KSI-Linux, Russian RedHat-based distribution.
.src.rpm is available at http://alexm.here.ru/ksi-contrib/.

Alas, this is almost of no use to non-Russian because it also contains my
translation of diald manuals (they are available separately at
http://alexm.here.ru/diald-ru/ and Mike, I would be very grateful if you
mention that fact somewhere in diald's README).  Someone could hack back
this .spec and remove mentions of Russian documentation...

MJ> as a means for money making companies to get their customers free
MJ> support for whatever old versions they've decided to sell. It *is*
MJ> intended to provide a means for users of the *current* version to ask
MJ> questions and discuss problems.

/etc/rc.d/init.d/diald:

#!/bin/sh
#
# diald         This shell script controls diald
#
# Author:       Alexey Mahotkin <[EMAIL PROTECTED]>
#
# $Id: init.d-diald,v 1.3 2000/01/02 19:20:51 alexm Exp $
#
# chkconfig: 2345 95 5
#
# description: Starts and stops diald: dial on demand daemon
#
# processname: diald
#
# config: /etc/diald.conf
#
# pidfile: /var/run/diald.pid
#

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

case "$1" in 
    start)
            /sbin/modprobe ethertap
            echo -n "Starting: "
            daemon /usr/sbin/diald
            echo
            touch /var/lock/subsys/diald
            ;;
    stop)
            echo -n "Shutting down: "
            killproc diald
            echo
            rm -f /var/lock/subsys/diald
            ;;
    restart|reload)
            $0 stop
            $0 start
            ;;
    status)
            status diald
            ;;
    *)
            echo "Usage: diald {start|stop|status|restart|reload}"
            exit 1
esac

exit 0


-- 

Let no shadow fall over thee            // in full view of the sun and the sky


-
To unsubscribe from this list: send the line "unsubscribe linux-diald" in
the body of a message to [EMAIL PROTECTED]

Reply via email to