#!/bin/sh /etc/rc.common
# Copyright (C) 2011 OpenWrt.org

START=50

SERVICE_PID_FILE=/var/run/rsyncd.pid

start() {
	service_start /usr/bin/rsync --daemon
}

stop() {
	service_stop /usr/bin/rsync
}