You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
198 B
19 lines
198 B
8 years ago
|
#!/bin/sh
|
||
7 years ago
|
|
||
|
. /etc/init.d/globals
|
||
|
|
||
8 years ago
|
CONF=/etc/vsftpd.conf
|
||
|
|
||
|
case $1 in
|
||
|
start)
|
||
|
chown 0:0 $CONF
|
||
|
vsftpd $CONF
|
||
7 years ago
|
;;
|
||
8 years ago
|
stop)
|
||
|
killall vsftpd
|
||
7 years ago
|
;;
|
||
|
*)
|
||
|
echo "[$BASENAME] Usage: $0 {start|stop}"
|
||
|
;;
|
||
8 years ago
|
esac
|