[arch-commits] Commit in mongodb/repos (14 files)
Felix Yan
fyan at archlinux.org
Thu Mar 3 19:19:32 UTC 2016
Date: Thursday, March 3, 2016 @ 20:19:32
Author: fyan
Revision: 164550
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
mongodb/repos/community-staging-i686/
mongodb/repos/community-staging-i686/PKGBUILD
(from rev 164549, mongodb/trunk/PKGBUILD)
mongodb/repos/community-staging-i686/boost160.patch
(from rev 164549, mongodb/trunk/boost160.patch)
mongodb/repos/community-staging-i686/disable-sslv3.patch
(from rev 164549, mongodb/trunk/disable-sslv3.patch)
mongodb/repos/community-staging-i686/mongodb.conf
(from rev 164549, mongodb/trunk/mongodb.conf)
mongodb/repos/community-staging-i686/mongodb.install
(from rev 164549, mongodb/trunk/mongodb.install)
mongodb/repos/community-staging-i686/mongodb.service
(from rev 164549, mongodb/trunk/mongodb.service)
mongodb/repos/community-staging-x86_64/
mongodb/repos/community-staging-x86_64/PKGBUILD
(from rev 164549, mongodb/trunk/PKGBUILD)
mongodb/repos/community-staging-x86_64/boost160.patch
(from rev 164549, mongodb/trunk/boost160.patch)
mongodb/repos/community-staging-x86_64/disable-sslv3.patch
(from rev 164549, mongodb/trunk/disable-sslv3.patch)
mongodb/repos/community-staging-x86_64/mongodb.conf
(from rev 164549, mongodb/trunk/mongodb.conf)
mongodb/repos/community-staging-x86_64/mongodb.install
(from rev 164549, mongodb/trunk/mongodb.install)
mongodb/repos/community-staging-x86_64/mongodb.service
(from rev 164549, mongodb/trunk/mongodb.service)
----------------------------------------------+
community-staging-i686/PKGBUILD | 99 +++++++++++++++++++++++++
community-staging-i686/boost160.patch | 11 ++
community-staging-i686/disable-sslv3.patch | 26 ++++++
community-staging-i686/mongodb.conf | 8 ++
community-staging-i686/mongodb.install | 32 ++++++++
community-staging-i686/mongodb.service | 10 ++
community-staging-x86_64/PKGBUILD | 99 +++++++++++++++++++++++++
community-staging-x86_64/boost160.patch | 11 ++
community-staging-x86_64/disable-sslv3.patch | 26 ++++++
community-staging-x86_64/mongodb.conf | 8 ++
community-staging-x86_64/mongodb.install | 32 ++++++++
community-staging-x86_64/mongodb.service | 10 ++
12 files changed, 372 insertions(+)
Copied: mongodb/repos/community-staging-i686/PKGBUILD (from rev 164549, mongodb/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Mathias Stearn <mathias at 10gen.com>
+# Contributor: Alec Thomas
+
+pkgname=mongodb
+pkgver=3.2.3
+pkgrel=2
+pkgdesc='A high-performance, open source, schema-free document-oriented database'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('pcre' 'snappy' 'openssl' 'libsasl' 'boost-libs' 'yaml-cpp')
+[[ "$CARCH" == "x86_64" ]] && depends+=('wiredtiger')
+makedepends=('scons' 'readline' 'ncurses' 'libpcap' 'boost')
+checkdepends=('python2-pymongo' 'python2-yaml')
+optdepends=('libpcap: needed for mongosniff'
+ 'mongodb-tools: mongoimport, mongodump, mongotop, etc')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz"
+ 'boost160.patch'
+ 'disable-sslv3.patch'
+ 'mongodb.conf' 'mongodb.service')
+sha512sums=('43b652da8fb461c36be1566965985aed036d53a8f4ed2a5f4a67e08571697c4030eb682a2a14ebc41991757d7083a268c5161b536d20dc1b3de13dac8df1da53'
+ '385c82875174caae433a3b381eb10f98a6fed0c8943788ddefff1de80a898e480bdbbf094a7783285cf2ae11ce3fc6878e57d58183d05be2f0837b206aaa4da6'
+ 'db2c0a64cb8521334cf4b3658ead12597b93b7e0ac986599f99f6b01dc7e2041352b2bd25cff5e2de30933ff9dc64b189f29be634df5490b21dda1264bcd04f5'
+ '05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
+ '177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9')
+
+_scons_args=(
+ --use-system-boost
+ --use-system-pcre
+ --use-system-snappy
+ --use-system-yaml
+ --use-system-zlib
+ --use-sasl-client
+ --ssl
+ --disable-warnings-as-errors
+ # --use-system-asio # https://jira.mongodb.org/browse/SERVER-21839
+ # --use-system-v8 # Doesn't compile
+ # --use-system-tcmalloc # Disabled as upstream suggests in https://jira.mongodb.org/browse/SERVER-17447?focusedCommentId=841890&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-841890
+)
+
+if [ "$CARCH" == "x86_64" ]; then
+ _scons_args+=(--use-system-wiredtiger)
+else
+ # WiredTiger must be disabled manually when building for i686
+ _scons_args+=(--wiredtiger=off)
+fi
+
+prepare() {
+ cd mongodb-src-r${pkgver}
+ patch -Np1 -i ../boost160.patch
+ patch -Np1 -i ../disable-sslv3.patch
+}
+
+build() {
+ cd mongodb-src-r${pkgver}
+ export SCONSFLAGS="$MAKEFLAGS"
+
+ scons core tools "${_scons_args[@]}"
+}
+
+check() {
+ cd mongodb-src-r${pkgver}
+ export SCONSFLAGS="$MAKEFLAGS"
+
+ # Setting LANG to workaround the following test error:
+ # std::exception: locale::facet::_S_create_c_locale name not valid
+ scons unittests "${_scons_args[@]}"
+ LANG=en_US.UTF-8 python2 buildscripts/resmoke.py --suites=unittests
+
+ # Specifying --storageEngine is needed for i686
+ if [ "$CARCH" == "i686" ]; then
+ _storageEngine="--storageEngine=mmapv1"
+ else
+ _storageEngine=""
+ fi
+
+ scons dbtest "${_scons_args[@]}"
+ python2 buildscripts/resmoke.py --suites=dbtest $_storageEngine
+
+ scons integration_tests "${_scons_args[@]}"
+ python2 buildscripts/resmoke.py --suites=integration_tests_replset,integration_tests_standalone --dbpathPrefix="$srcdir" $_storageEngine
+}
+
+package() {
+ cd mongodb-src-r${pkgver}
+
+ scons install --prefix="$pkgdir/usr" --nostrip "${_scons_args[@]}"
+
+ install -Dm644 "$srcdir/mongodb.conf" "$pkgdir/etc/mongodb.conf"
+ install -Dm644 "$srcdir/mongodb.service" "$pkgdir/usr/lib/systemd/system/mongodb.service"
+ install -dm700 "$pkgdir/var/lib/mongodb"
+ install -dm755 "$pkgdir/var/log/mongodb"
+}
Copied: mongodb/repos/community-staging-i686/boost160.patch (from rev 164549, mongodb/trunk/boost160.patch)
===================================================================
--- community-staging-i686/boost160.patch (rev 0)
+++ community-staging-i686/boost160.patch 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,11 @@
+diff -uprb mongodb-src-r3.2.0.orig/SConstruct mongodb-src-r3.2.0/SConstruct
+--- mongodb-src-r3.2.0.orig/SConstruct 2015-12-02 21:01:34.000000000 +0200
++++ mongodb-src-r3.2.0/SConstruct 2015-12-22 11:18:23.613216445 +0200
+@@ -2245,6 +2245,7 @@ def doConfigure(myenv):
+ # permit more than four parameters.
+ "BOOST_THREAD_DONT_PROVIDE_VARIADIC_THREAD",
+ "BOOST_SYSTEM_NO_DEPRECATED",
++ "BOOST_OPTIONAL_USE_SINGLETON_DEFINITION_OF_NONE",
+ ]
+ )
+
Copied: mongodb/repos/community-staging-i686/disable-sslv3.patch (from rev 164549, mongodb/trunk/disable-sslv3.patch)
===================================================================
--- community-staging-i686/disable-sslv3.patch (rev 0)
+++ community-staging-i686/disable-sslv3.patch 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,26 @@
+diff -u -r mongodb-src-r3.2.3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp mongodb-src-r3.2.3-nossl3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp
+--- mongodb-src-r3.2.3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp 2016-02-17 19:57:55.000000000 +0100
++++ mongodb-src-r3.2.3-nossl3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp 2016-03-03 18:24:21.321007930 +0100
+@@ -84,6 +84,14 @@
+ handle_ = ::SSL_CTX_new(::SSLv2_server_method());
+ break;
+ #endif // defined(OPENSSL_NO_SSL2)
++#if defined(OPENSSL_NO_SSL3)
++ case context::sslv3:
++ case context::sslv3_client:
++ case context::sslv3_server:
++ asio::detail::throw_error(
++ asio::error::invalid_argument, "context");
++ break;
++#else // defined(OPENSSL_NO_SSL3)
+ case context::sslv3:
+ handle_ = ::SSL_CTX_new(::SSLv3_method());
+ break;
+@@ -93,6 +101,7 @@
+ case context::sslv3_server:
+ handle_ = ::SSL_CTX_new(::SSLv3_server_method());
+ break;
++#endif // defined(OPENSSL_NO_SSL3)
+ case context::tlsv1:
+ handle_ = ::SSL_CTX_new(::TLSv1_method());
+ break;
Copied: mongodb/repos/community-staging-i686/mongodb.conf (from rev 164549, mongodb/trunk/mongodb.conf)
===================================================================
--- community-staging-i686/mongodb.conf (rev 0)
+++ community-staging-i686/mongodb.conf 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,8 @@
+# See http://www.mongodb.org/display/DOCS/File+Based+Configuration for format details
+# Run mongod --help to see a list of options
+
+bind_ip = 127.0.0.1
+quiet = true
+dbpath = /var/lib/mongodb
+logpath = /var/log/mongodb/mongod.log
+logappend = true
Copied: mongodb/repos/community-staging-i686/mongodb.install (from rev 164549, mongodb/trunk/mongodb.install)
===================================================================
--- community-staging-i686/mongodb.install (rev 0)
+++ community-staging-i686/mongodb.install 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,32 @@
+# vim: syntax=sh
+
+post_install() {
+ useradd -r -g daemon -d /var/lib/mongodb -s /bin/bash mongodb
+ chown -R mongodb:daemon /var/lib/mongodb
+ chown -R mongodb:daemon /var/log/mongodb
+
+ if [ "$(uname -m)" != "x86_64" ]
+ then
+ echo '==> Warning: the 32 bit version of MongoDB is limited to about 2GB of data.'
+ echo '==> See http://blog.mongodb.org/post/137788967/32-bit-limitations'
+ fi
+}
+
+post_upgrade() {
+ chown -R mongodb:daemon /var/lib/mongodb
+ chown -R mongodb:daemon /var/log/mongodb
+
+ if [ "$(vercmp $2 1.8.2-3)" -lt 0 ]
+ then
+ # have to fix my fudge up in 1.8.2-2 and 1.8.2-3
+ # added july 5th, 2011
+ usermod -s /bin/bash mongodb >& /dev/null
+ echo 'The dbpath has changed from /var/state/mongodb to /var/lib/mongodb'
+ echo 'Make sure you move your data files to the new dbpath before you start/restart mongodb'
+ echo 'The logpath has changed from /var/log/mongod to /var/log/mongodb/mongod.log'
+ fi
+}
+
+pre_remove() {
+ userdel mongodb
+}
Copied: mongodb/repos/community-staging-i686/mongodb.service (from rev 164549, mongodb/trunk/mongodb.service)
===================================================================
--- community-staging-i686/mongodb.service (rev 0)
+++ community-staging-i686/mongodb.service 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,10 @@
+[Unit]
+Description=High-performance, schema-free document-oriented database
+After=network.target
+
+[Service]
+User=mongodb
+ExecStart=/usr/bin/mongod --quiet --config /etc/mongodb.conf
+
+[Install]
+WantedBy=multi-user.target
Copied: mongodb/repos/community-staging-x86_64/PKGBUILD (from rev 164549, mongodb/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Mathias Stearn <mathias at 10gen.com>
+# Contributor: Alec Thomas
+
+pkgname=mongodb
+pkgver=3.2.3
+pkgrel=2
+pkgdesc='A high-performance, open source, schema-free document-oriented database'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('pcre' 'snappy' 'openssl' 'libsasl' 'boost-libs' 'yaml-cpp')
+[[ "$CARCH" == "x86_64" ]] && depends+=('wiredtiger')
+makedepends=('scons' 'readline' 'ncurses' 'libpcap' 'boost')
+checkdepends=('python2-pymongo' 'python2-yaml')
+optdepends=('libpcap: needed for mongosniff'
+ 'mongodb-tools: mongoimport, mongodump, mongotop, etc')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz"
+ 'boost160.patch'
+ 'disable-sslv3.patch'
+ 'mongodb.conf' 'mongodb.service')
+sha512sums=('43b652da8fb461c36be1566965985aed036d53a8f4ed2a5f4a67e08571697c4030eb682a2a14ebc41991757d7083a268c5161b536d20dc1b3de13dac8df1da53'
+ '385c82875174caae433a3b381eb10f98a6fed0c8943788ddefff1de80a898e480bdbbf094a7783285cf2ae11ce3fc6878e57d58183d05be2f0837b206aaa4da6'
+ 'db2c0a64cb8521334cf4b3658ead12597b93b7e0ac986599f99f6b01dc7e2041352b2bd25cff5e2de30933ff9dc64b189f29be634df5490b21dda1264bcd04f5'
+ '05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
+ '177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9')
+
+_scons_args=(
+ --use-system-boost
+ --use-system-pcre
+ --use-system-snappy
+ --use-system-yaml
+ --use-system-zlib
+ --use-sasl-client
+ --ssl
+ --disable-warnings-as-errors
+ # --use-system-asio # https://jira.mongodb.org/browse/SERVER-21839
+ # --use-system-v8 # Doesn't compile
+ # --use-system-tcmalloc # Disabled as upstream suggests in https://jira.mongodb.org/browse/SERVER-17447?focusedCommentId=841890&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-841890
+)
+
+if [ "$CARCH" == "x86_64" ]; then
+ _scons_args+=(--use-system-wiredtiger)
+else
+ # WiredTiger must be disabled manually when building for i686
+ _scons_args+=(--wiredtiger=off)
+fi
+
+prepare() {
+ cd mongodb-src-r${pkgver}
+ patch -Np1 -i ../boost160.patch
+ patch -Np1 -i ../disable-sslv3.patch
+}
+
+build() {
+ cd mongodb-src-r${pkgver}
+ export SCONSFLAGS="$MAKEFLAGS"
+
+ scons core tools "${_scons_args[@]}"
+}
+
+check() {
+ cd mongodb-src-r${pkgver}
+ export SCONSFLAGS="$MAKEFLAGS"
+
+ # Setting LANG to workaround the following test error:
+ # std::exception: locale::facet::_S_create_c_locale name not valid
+ scons unittests "${_scons_args[@]}"
+ LANG=en_US.UTF-8 python2 buildscripts/resmoke.py --suites=unittests
+
+ # Specifying --storageEngine is needed for i686
+ if [ "$CARCH" == "i686" ]; then
+ _storageEngine="--storageEngine=mmapv1"
+ else
+ _storageEngine=""
+ fi
+
+ scons dbtest "${_scons_args[@]}"
+ python2 buildscripts/resmoke.py --suites=dbtest $_storageEngine
+
+ scons integration_tests "${_scons_args[@]}"
+ python2 buildscripts/resmoke.py --suites=integration_tests_replset,integration_tests_standalone --dbpathPrefix="$srcdir" $_storageEngine
+}
+
+package() {
+ cd mongodb-src-r${pkgver}
+
+ scons install --prefix="$pkgdir/usr" --nostrip "${_scons_args[@]}"
+
+ install -Dm644 "$srcdir/mongodb.conf" "$pkgdir/etc/mongodb.conf"
+ install -Dm644 "$srcdir/mongodb.service" "$pkgdir/usr/lib/systemd/system/mongodb.service"
+ install -dm700 "$pkgdir/var/lib/mongodb"
+ install -dm755 "$pkgdir/var/log/mongodb"
+}
Copied: mongodb/repos/community-staging-x86_64/boost160.patch (from rev 164549, mongodb/trunk/boost160.patch)
===================================================================
--- community-staging-x86_64/boost160.patch (rev 0)
+++ community-staging-x86_64/boost160.patch 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,11 @@
+diff -uprb mongodb-src-r3.2.0.orig/SConstruct mongodb-src-r3.2.0/SConstruct
+--- mongodb-src-r3.2.0.orig/SConstruct 2015-12-02 21:01:34.000000000 +0200
++++ mongodb-src-r3.2.0/SConstruct 2015-12-22 11:18:23.613216445 +0200
+@@ -2245,6 +2245,7 @@ def doConfigure(myenv):
+ # permit more than four parameters.
+ "BOOST_THREAD_DONT_PROVIDE_VARIADIC_THREAD",
+ "BOOST_SYSTEM_NO_DEPRECATED",
++ "BOOST_OPTIONAL_USE_SINGLETON_DEFINITION_OF_NONE",
+ ]
+ )
+
Copied: mongodb/repos/community-staging-x86_64/disable-sslv3.patch (from rev 164549, mongodb/trunk/disable-sslv3.patch)
===================================================================
--- community-staging-x86_64/disable-sslv3.patch (rev 0)
+++ community-staging-x86_64/disable-sslv3.patch 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,26 @@
+diff -u -r mongodb-src-r3.2.3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp mongodb-src-r3.2.3-nossl3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp
+--- mongodb-src-r3.2.3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp 2016-02-17 19:57:55.000000000 +0100
++++ mongodb-src-r3.2.3-nossl3/src/third_party/asio-asio-1-11-0/asio/include/asio/ssl/impl/context.ipp 2016-03-03 18:24:21.321007930 +0100
+@@ -84,6 +84,14 @@
+ handle_ = ::SSL_CTX_new(::SSLv2_server_method());
+ break;
+ #endif // defined(OPENSSL_NO_SSL2)
++#if defined(OPENSSL_NO_SSL3)
++ case context::sslv3:
++ case context::sslv3_client:
++ case context::sslv3_server:
++ asio::detail::throw_error(
++ asio::error::invalid_argument, "context");
++ break;
++#else // defined(OPENSSL_NO_SSL3)
+ case context::sslv3:
+ handle_ = ::SSL_CTX_new(::SSLv3_method());
+ break;
+@@ -93,6 +101,7 @@
+ case context::sslv3_server:
+ handle_ = ::SSL_CTX_new(::SSLv3_server_method());
+ break;
++#endif // defined(OPENSSL_NO_SSL3)
+ case context::tlsv1:
+ handle_ = ::SSL_CTX_new(::TLSv1_method());
+ break;
Copied: mongodb/repos/community-staging-x86_64/mongodb.conf (from rev 164549, mongodb/trunk/mongodb.conf)
===================================================================
--- community-staging-x86_64/mongodb.conf (rev 0)
+++ community-staging-x86_64/mongodb.conf 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,8 @@
+# See http://www.mongodb.org/display/DOCS/File+Based+Configuration for format details
+# Run mongod --help to see a list of options
+
+bind_ip = 127.0.0.1
+quiet = true
+dbpath = /var/lib/mongodb
+logpath = /var/log/mongodb/mongod.log
+logappend = true
Copied: mongodb/repos/community-staging-x86_64/mongodb.install (from rev 164549, mongodb/trunk/mongodb.install)
===================================================================
--- community-staging-x86_64/mongodb.install (rev 0)
+++ community-staging-x86_64/mongodb.install 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,32 @@
+# vim: syntax=sh
+
+post_install() {
+ useradd -r -g daemon -d /var/lib/mongodb -s /bin/bash mongodb
+ chown -R mongodb:daemon /var/lib/mongodb
+ chown -R mongodb:daemon /var/log/mongodb
+
+ if [ "$(uname -m)" != "x86_64" ]
+ then
+ echo '==> Warning: the 32 bit version of MongoDB is limited to about 2GB of data.'
+ echo '==> See http://blog.mongodb.org/post/137788967/32-bit-limitations'
+ fi
+}
+
+post_upgrade() {
+ chown -R mongodb:daemon /var/lib/mongodb
+ chown -R mongodb:daemon /var/log/mongodb
+
+ if [ "$(vercmp $2 1.8.2-3)" -lt 0 ]
+ then
+ # have to fix my fudge up in 1.8.2-2 and 1.8.2-3
+ # added july 5th, 2011
+ usermod -s /bin/bash mongodb >& /dev/null
+ echo 'The dbpath has changed from /var/state/mongodb to /var/lib/mongodb'
+ echo 'Make sure you move your data files to the new dbpath before you start/restart mongodb'
+ echo 'The logpath has changed from /var/log/mongod to /var/log/mongodb/mongod.log'
+ fi
+}
+
+pre_remove() {
+ userdel mongodb
+}
Copied: mongodb/repos/community-staging-x86_64/mongodb.service (from rev 164549, mongodb/trunk/mongodb.service)
===================================================================
--- community-staging-x86_64/mongodb.service (rev 0)
+++ community-staging-x86_64/mongodb.service 2016-03-03 19:19:32 UTC (rev 164550)
@@ -0,0 +1,10 @@
+[Unit]
+Description=High-performance, schema-free document-oriented database
+After=network.target
+
+[Service]
+User=mongodb
+ExecStart=/usr/bin/mongod --quiet --config /etc/mongodb.conf
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list