proftpd script > 리눅스 Tip

본문 바로가기
 

proftpd script

페이지 정보

작성자 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 7,867회 작성일 10-07-20 09:44

본문

#!/bin/sh
# $Id: proftpd.init,v 1.1 2004/02/26 17:54:30 thias Exp $
#
# proftpd        This shell script takes care of starting and stopping
#                proftpd.
#
# chkconfig: - 80 30
# description: ProFTPD is an enhanced FTP server with a focus towards \
#              simplicity, security, and ease of configuration. \
#              It features a very Apache-like configuration syntax, \
#              and a highly customizable server infrastructure, \
#              including support for multiple 'virtual' FTP servers, \
#              anonymous FTP, and permission-based directory visibility.
# processname: proftpd
# config: /etc/proftp.conf
# pidfile: /var/run/proftpd.pid

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

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

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

[ -x /usr/sbin/proftpd ] || exit 0

RETVAL=0

prog="proftpd"

start() {
        echo -n $"Starting $prog: "
        daemon proftpd
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch /var/lock/subsys/proftpd
}

stop() {
        echo -n $"Shutting down $prog: "
        killproc proftpd
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/proftpd
}

# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  status)
        status proftpd
        RETVAL=$?
        ;;
  restart)
        stop
        start
        ;;
  condrestart)
        if [ -f /var/lock/subsys/proftpd ]; then
          stop
          start
        fi
        ;;
  reload)
        echo -n $"Re-reading $prog configuration: "
        killproc proftpd -HUP
        RETVAL=$?
        echo
        ;;
  *)
        echo "Usage: $prog {start|stop|restart|reload|condrestart|status}"
        exit 1
esac

exit $RETVAL

댓글목록

등록된 댓글이 없습니다.

Total 138건 1 페이지
리눅스 Tip 목록
번호 제목 글쓴이 조회 날짜
138 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 3 01-28
137 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5 06-18
136 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10 06-18
열람중 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 7868 07-20
134 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8186 07-05
133 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8338 01-31
132 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8427 07-03
131 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8488 01-31
130 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8649 01-31
129 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8731 06-30
128 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8832 05-28
127 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8928 02-02
126 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8934 06-23
125 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8937 01-31
124 no_profile 차동박 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8946 01-31
123 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9103 06-29
122 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9112 05-29
121 no_profile 차동박 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9285 07-06
게시물 검색