mirror of https://gitee.com/bigwinds/arangodb
moved default database directory
This commit is contained in:
parent
85a36b2cfc
commit
f92b804ade
|
@ -1,6 +1,9 @@
|
||||||
not released yet
|
not released yet
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
* moved default database directory to "/var/lib/arangodb" in accordance with
|
||||||
|
http://www.pathname.com/fhs/pub/fhs-2.3.html
|
||||||
|
|
||||||
* fixed issue #179: strange text in import manual
|
* fixed issue #179: strange text in import manual
|
||||||
|
|
||||||
* fixed issue #178: test for aragoimp is missing
|
* fixed issue #178: test for aragoimp is missing
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
#
|
#
|
||||||
### BEGIN INIT INFO
|
### BEGIN INIT INFO
|
||||||
# Provides: arangod
|
# Provides: arangod
|
||||||
# Required-Start: $network
|
# Required-Start: $network $remote_fs
|
||||||
# Required-Stop: $network
|
# Required-Stop: $network $remote_fs
|
||||||
# Default-Start: 3 5
|
# Default-Start: 3 5
|
||||||
# Default-Stop: 0 1 2 6
|
# Default-Stop: 0 1 2 6
|
||||||
# Description: Start the ArangoDB daemon
|
# Description: Start the ArangoDB daemon
|
||||||
|
|
|
@ -59,7 +59,7 @@ TRI_SBINDIR = ${abs_builddir}/bin
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
TRI_DATABASEDIR = ${localstatedir}/${PACKAGE_TARNAME}
|
TRI_DATABASEDIR = ${localstatedir}/lib/${PACKAGE_TARNAME}
|
||||||
TRI_LOGDIR = ${localstatedir}/log/${PACKAGE_TARNAME}
|
TRI_LOGDIR = ${localstatedir}/log/${PACKAGE_TARNAME}
|
||||||
TRI_PKGDATADIR = ${pkgdatadir}
|
TRI_PKGDATADIR = ${pkgdatadir}
|
||||||
TRI_SBINDIR = ${sbindir}
|
TRI_SBINDIR = ${sbindir}
|
||||||
|
|
|
@ -1116,7 +1116,7 @@ BISONXX_FILES = lib/JsonParserX/JsonParserX.cpp
|
||||||
### @brief protocol buffers
|
### @brief protocol buffers
|
||||||
################################################################################
|
################################################################################
|
||||||
PROTOBUF_FILES = lib/ProtocolBuffers/arangodb.pb.cpp
|
PROTOBUF_FILES = lib/ProtocolBuffers/arangodb.pb.cpp
|
||||||
@ENABLE_RELATIVE_FALSE@TRI_DATABASEDIR = ${localstatedir}/${PACKAGE_TARNAME}
|
@ENABLE_RELATIVE_FALSE@TRI_DATABASEDIR = ${localstatedir}/lib/${PACKAGE_TARNAME}
|
||||||
@ENABLE_RELATIVE_TRUE@TRI_DATABASEDIR =
|
@ENABLE_RELATIVE_TRUE@TRI_DATABASEDIR =
|
||||||
@ENABLE_RELATIVE_FALSE@TRI_LOGDIR = ${localstatedir}/log/${PACKAGE_TARNAME}
|
@ENABLE_RELATIVE_FALSE@TRI_LOGDIR = ${localstatedir}/log/${PACKAGE_TARNAME}
|
||||||
@ENABLE_RELATIVE_TRUE@TRI_LOGDIR = /tmp
|
@ENABLE_RELATIVE_TRUE@TRI_LOGDIR = /tmp
|
||||||
|
|
Loading…
Reference in New Issue