summaryrefslogtreecommitdiff
blob: d3fdf1357cf0e3095358b6f49ccc2af1dbd0a34b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/sbin/runscript

depend() {
	need net dbus
}

start() {
	start-stop-daemon --start --exec /usr/libexec/ubuntuone-syncdaemon --make-pidfile --pidfile /var/run/u1sd.pid -u $U1SD_USER -g $U1SD_GROUP
}

stop() {
	start-stop-daemon --stop --exec /usr/libexec/ubuntuone-syncdaemon --pidfile /var/run/u1sd.pid
}