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-fs/lessfs/files: lessfs.initd lessfs.confd lessfs-implicit-declaration.patch
Date: Sun, 16 Jan 2011 13:44:34
Message-Id: 20110116134423.D9EF620047@flycatcher.gentoo.org
1 hwoarang 11/01/16 13:44:23
2
3 Added: lessfs.initd lessfs.confd
4 Removed: lessfs-implicit-declaration.patch
5 Log:
6 Version bump but will remain masked for a while
7
8 (Portage version: 2.1.9.31/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 sys-fs/lessfs/files/lessfs.initd
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lessfs/files/lessfs.initd?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lessfs/files/lessfs.initd?rev=1.1&content-type=text/plain
15
16 Index: lessfs.initd
17 ===================================================================
18 #!/sbin/runscript
19 # Copyright 1999-2011 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21 # $Header: /var/cvsroot/gentoo-x86/sys-fs/lessfs/files/lessfs.initd,v 1.1 2011/01/16 13:44:23 hwoarang Exp $
22
23 depend() {
24 need net
25 }
26
27 start() {
28 ebegin "Starting lessfs"
29 start-stop-daemon --start --exec /usr/bin/lessfs \
30 --pidfile /var/run/lessfs.pid --make-pidfile -- ${CONFIG} ${MOUNTPOINT}
31 eend $?
32 }
33
34 stop() {
35 ebegin "Starting lessfs"
36 start-stop-daemon --stop --exec /usr/bin/lessfs \
37 --pidfile /var/run/lessfs.pid
38 eend $?
39 }
40
41
42
43 1.1 sys-fs/lessfs/files/lessfs.confd
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lessfs/files/lessfs.confd?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lessfs/files/lessfs.confd?rev=1.1&content-type=text/plain
47
48 Index: lessfs.confd
49 ===================================================================
50 # Gentoo configuration file for lessfs
51
52 # CONFIG: Full path to your configuration file
53 CONFIG="/etc/lessfs.cfg"
54
55 # MOUNTPOINT: Destination mountpoint
56 MOUNTPOINT="/fuse"
57
58 # MKLESSFS: Binary to create lessfs filesystems
59 # You really don't want to change that
60 MKLESSFS="/usr/bin/mklessfs"