Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/halevt/files: halevt
Date: Sat, 30 May 2009 18:24:25
Message-Id: E1MATEG-0008G9-B3@stork.gentoo.org
1 hwoarang 09/05/30 18:24:24
2
3 Added: halevt
4 Log:
5 Initial commit of halevt application. Fixes bug 257933
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sys-apps/halevt/files/halevt
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/files/halevt?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/files/halevt?rev=1.1&content-type=text/plain
13
14 Index: halevt
15 ===================================================================
16 #!/sbin/runscript
17 # Copyright 1999-2009 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License, v2 or later
19
20 depend() {
21 need hald
22 }
23
24 start() {
25 ebegin "Starting Automounter"
26 start-stop-daemon --start --pidfile /var/run/halevt.pid --exec /usr/bin/halevt -- -u root -g plugdev > /dev/null
27 eend $?
28 }
29
30 stop() {
31 ebegin "Stopping Automounter"
32 start-stop-daemon --stop --pidfile /var/run/halevt.pid
33 eend $?
34 }