#!/bin/sh
CONF=/etc/vsftpd.conf

case $1 in
	start)
		chown 0:0 $CONF
		vsftpd $CONF
		;;
	stop)
		killall vsftpd
		;;
esac