http://www.howtoforge.com/perfect-server-debian-lenny-ispconfig3

Discussion in 'HOWTO-Related Questions' started by mischlig, Sep 2, 2009.

  1. mischlig

    mischlig New Member

    Hello, i got some trouble with with Tutorial!

    Section 12: Install PureFTPd And Quota


    Following Errormessage occurs:

    Code:
    /etc/init.d/openbsd-inetd restart
    
    -bash: /etc/init.d/openbsd-inetd: No such file or directory
    
    Code:
    quotacheck -avugm
    
    quotacheck: Your kernel probably supports journaled quota but you are not using it. Consider switching to journaled quota to avoid running quotacheck after an unclean shutdown.
    quotacheck: Quota for users is enabled on mountpoint / so quotacheck might damage the file.
    Please turn quotas off or use -f to force checking.
    
    Code:
    /etc/courier# quotaon -avug
    
    quotaon: using //aquota.group on /dev/sda2 [/]: Device or resource busy
    quotaon: using //aquota.user on /dev/sda2 [/]: Device or resource busy

    All other things working fine! But i got no clue with inetd


    ---
    Debian 5.0.2
     
    Last edited: Sep 2, 2009
  2. matey

    matey New Member

    That is strange!
    Have you ls the /etc/init.d/ to see if it is there?

    May be something was not installed? or missed a step in the instructions?
    Here's the script , it is a short one but I dont think this al;one will help probably needs to be Installed!:

    #!/bin/sh -e
    ### BEGIN INIT INFO
    # Provides: openbsd-inetd
    # Required-Start: $local_fs $remote_fs
    # Required-Stop: $local_fs $remote_fs
    # Should-Start: $syslog
    # Should-Stop: $syslog
    # Default-Start: 2 3 4 5
    # Default-Stop: 0 1 6
    # Short-Description: Start or stop the inetd daemon.
    ### END INIT INFO

    DAEMON=/usr/sbin/inetd

    [ -x $DAEMON -a -e /etc/inetd.conf ] || exit 0

    [ -e /etc/default/openbsd-inetd ] && . /etc/default/openbsd-inetd

    . /lib/lsb/init-functions

    checkportmap () {
    if ! grep -v -s "^ *#" /etc/inetd.conf | grep -q -s 'rpc/'; then
    return 0
    fi

    if [ ! -x /usr/bin/rpcinfo ]; then
    log_action_msg "WARNING: rpcinfo not available - RPC services may be unavailable!"
    log_action_msg " (Commenting out the rpc services in inetd.conf will"
    log_action_msg " disable this message)"
    elif ! /usr/bin/rpcinfo -u localhost portmapper >/dev/null 2>&1; then
    log_action_msg "WARNING: portmapper inactive - RPC services unavailable!"
    log_action_msg " (Commenting out the rpc services in inetd.conf will"
    log_action_msg " disable this message)"
    fi
    }

    checknoservices () {
    if ! grep -q "^[[:alnum:]/]" /etc/inetd.conf; then
    log_action_msg "Not starting internet superserver: no services enabled"
    exit 0
    fi
    }

    case "$1" in
    start)
    checknoservices
    checkportmap
    log_daemon_msg "Starting internet superserver" "inetd"
    start-stop-daemon --start --quiet --pidfile /var/run/inetd.pid \
    --exec $DAEMON -- $OPTIONS
    log_end_msg 0
    ;;
    stop)
    log_daemon_msg "Stopping internet superserver" "inetd"
    start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \
    --oknodo
    log_end_msg 0
    ;;
    reload|force-reload)
    log_daemon_msg "Reloading internet superserver" "inetd"
    start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \
    --oknodo --signal 1
    log_end_msg 0
    ;;
    restart)
    checkportmap
    log_daemon_msg "Restarting internet superserver" "inetd"
    start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \
    --oknodo
    checknoservices
    sleep 1
    start-stop-daemon --start --quiet --pidfile /var/run/inetd.pid \
    --exec $DAEMON -- $OPTIONS
    log_end_msg 0
    ;;
    *)
    echo "Usage: /etc/init.d/openbsd-inetd {start|stop|reload|force-reload|restart}"
    exit 2
    ;;
    esac

    exit 0
     
  3. falko

    falko Super Moderator Howtoforge Staff

    Please run
    Code:
    aptitude install openbsd-inetd
     

Share This Page