blob: 3580390a1758d13470bff1e7b6313aaad982ba1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need dbus
}
start() {
ebegin "Setting up samsung-tools"
dbus-send --system --print-reply=literal --dest='org.voria.SamsungTools.System' \
'/' org.voria.SamsungTools.System.SetInitialDevicesStatus
eend $?
}
|