Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/mongodb/files: mongodb.conf mongodb.service
Date: Sat, 28 Sep 2013 11:41:00
Message-Id: 20130928114055.2D7A62004E@flycatcher.gentoo.org
1 pacho 13/09/28 11:40:55
2
3 Added: mongodb.conf mongodb.service
4 Log:
5 Add unit file (#485442 by Peter Volkov)
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
8
9 Revision Changes Path
10 1.1 dev-db/mongodb/files/mongodb.conf
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb.conf?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb.conf?rev=1.1&content-type=text/plain
14
15 Index: mongodb.conf
16 ===================================================================
17 # See http://www.mongodb.org/display/DOCS/File+Based+Configuration for format details
18 # Run mongod --help to see a list of options
19
20 bind_ip = 127.0.0.1
21 quiet = true
22 dbpath = /var/lib/mongodb
23 logpath = /var/log/mongodb/mongod.log
24 logappend = true
25
26
27
28 1.1 dev-db/mongodb/files/mongodb.service
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb.service?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb.service?rev=1.1&content-type=text/plain
32
33 Index: mongodb.service
34 ===================================================================
35 [Unit]
36 Description=High-performance, schema-free document-oriented database
37 After=network.target
38
39 [Service]
40 User=mongodb
41 ExecStart=/usr/bin/mongod --quiet --config /etc/mongodb.conf
42
43 [Install]
44 WantedBy=multi-user.target