#!/bin/sh
#
# rsync
#
case $1 in

	start)
		echo "rsyncd starting"
		/usr/bin/rsync --daemon @CONFIG@
		;;

esac

