diff options
Diffstat (limited to 'rel')
-rwxr-xr-x | rel/overlay/bin/bigcouch (renamed from rel/overlay/bin/dbcore) | 2 | ||||
-rw-r--r-- | rel/overlay/etc/default.ini | 2 | ||||
-rw-r--r-- | rel/reltool.config | 6 | ||||
-rw-r--r-- | rel/sv/README | 2 | ||||
-rwxr-xr-x | rel/sv/dbcore/run | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/rel/overlay/bin/dbcore b/rel/overlay/bin/bigcouch index ca113a42..22275daf 100755 --- a/rel/overlay/bin/dbcore +++ b/rel/overlay/bin/bigcouch @@ -24,5 +24,5 @@ export BINDIR=$ROOTDIR/erts-$ERTS_VSN/bin export EMU=beam export PROGNAME=`echo $0 | sed 's/.*\///'` -exec $BINDIR/erlexec -boot $ROOTDIR/releases/$APP_VSN/dbcore \ +exec $BINDIR/erlexec -boot $ROOTDIR/releases/$APP_VSN/bigcouch \ -args_file $ROOTDIR/etc/vm.args diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini index c86eeefb..a3409586 100644 --- a/rel/overlay/etc/default.ini +++ b/rel/overlay/etc/default.ini @@ -28,7 +28,7 @@ backlog = 512 secure_rewrites = true [log] -file = {{prefix}}/var/log/dbcore.log +file = {{prefix}}/var/log/bigcouch.log level = info [couch_httpd_auth] diff --git a/rel/reltool.config b/rel/reltool.config index 6cc5b3f5..1b5868f4 100644 --- a/rel/reltool.config +++ b/rel/reltool.config @@ -14,7 +14,7 @@ {sys, [ {lib_dirs, ["../apps"]}, - {rel, "dbcore", "1.2.4", [ + {rel, "bigcouch", "1.2.4", [ kernel, stdlib, sasl, @@ -33,7 +33,7 @@ chttpd ]}, {rel, "start_clean", "", [kernel, stdlib]}, - {boot_rel, "dbcore"}, + {boot_rel, "bigcouch"}, {profile, embedded}, {excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)"]}, {excl_archive_filters, [".*"]}, @@ -48,7 +48,7 @@ {app, chttpd, [{incl_cond, include}]} ]}. -{overlay_vars, "dbcore.config"}. +{overlay_vars, "bigcouch.config"}. {overlay, [ {mkdir, "var/log"}, {copy, "overlay/bin"}, diff --git a/rel/sv/README b/rel/sv/README index 377a2e17..b5cc7404 100644 --- a/rel/sv/README +++ b/rel/sv/README @@ -1 +1 @@ -This is an example of a cloudant-dbcore runit (http://smarden.org/runit/) service. Use it to start/stop/restart cloudant-dbcore. You may need to adjust the "run" script for install location and the home directory cloudant-dbcore will run as. +This is an example of a BigCouch runit (http://smarden.org/runit/) service. Use it to start/stop/restart BigCouch. You may need to adjust the "run" script for install location and the home directory BigCouch will run as. diff --git a/rel/sv/dbcore/run b/rel/sv/dbcore/run index a137fab6..875c3f02 100755 --- a/rel/sv/dbcore/run +++ b/rel/sv/dbcore/run @@ -1,4 +1,4 @@ #!/bin/bash exec 2>&1 -export HOME=/home/dbcore -exec chpst -u dbcore /opt/dbcore/bin/dbcore +export HOME=/home/bigcouch +exec chpst -u bigcouch /opt/bigcouch/bin/bigcouch |