mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
Riak CS is an object storage system built on top of Riak. It facilitates storing large objects in Riak and presents an S3-compatible interface. It also provides multi-tenancy features such as user accounts, authentication, access control mechanisms, and per account usage reporting. WWW: https://github.com/basho/riak_cs Submitted by: Scott Kamp (based on)
47 lines
1.6 KiB
Text
47 lines
1.6 KiB
Text
--- rel/vars.config.orig 2015-05-29 10:29:55.000000000 +1000
|
|
+++ rel/vars.config 2015-09-24 14:36:24.429038742 +1000
|
|
@@ -2,11 +2,12 @@
|
|
%% ex: ts=4 sw=4 et
|
|
|
|
%% Platform-specific installation paths
|
|
-{platform_bin_dir, "./bin"}.
|
|
-{platform_data_dir, "./data"}.
|
|
-{platform_etc_dir, "./etc"}.
|
|
-{platform_lib_dir, "./lib"}.
|
|
-{platform_log_dir, "./log"}.
|
|
+{platform_base_dir, "%%PREFIX%%/lib/riak-cs"}.
|
|
+{platform_bin_dir, "%%PREFIX%%/sbin"}.
|
|
+{platform_etc_dir, "%%PREFIX%%/etc/riak-cs"}.
|
|
+{platform_lib_dir, "%%PREFIX%%/lib/riak-cs/lib"}.
|
|
+{platform_data_dir, "/var/db/riak-cs"}.
|
|
+{platform_log_dir, "/var/log/riak-cs"}.
|
|
|
|
%% lager
|
|
{console_log_default, file}.
|
|
@@ -41,16 +42,18 @@
|
|
%% bin/riak_cs
|
|
%%
|
|
{data_dir, "{{target_dir}}/data"}.
|
|
-{runner_script_dir, "\`cd \\`dirname $0\\` && /bin/pwd\`"}.
|
|
-{runner_base_dir, "{{runner_script_dir}}/.."}.
|
|
-{runner_etc_dir, "$RUNNER_BASE_DIR/etc"}.
|
|
-{runner_log_dir, "$RUNNER_BASE_DIR/log"}.
|
|
-{runner_lib_dir, "$RUNNER_BASE_DIR/lib"}.
|
|
-{runner_patch_dir, "$RUNNER_BASE_DIR/lib/basho-patches"}.
|
|
-{pipe_dir, "/tmp/$RUNNER_BASE_DIR/"}.
|
|
-{runner_user, ""}.
|
|
+{runner_script_dir, "{{platform_bin_dir}}"}.
|
|
+{runner_base_dir, "{{platform_base_dir}}"}.
|
|
+{runner_etc_dir, "{{platform_etc_dir}}"}.
|
|
+{runner_log_dir, "{{platform_log_dir}}"}.
|
|
+{runner_lib_dir, "{{platform_lib_dir}}"}.
|
|
+{runner_patch_dir, "{{platform_lib_dir}}/basho-patches"}.
|
|
+{pipe_dir, "/tmp/riak-cs"}.
|
|
+{runner_user, "riakcs"}.
|
|
{runner_wait_process, "riak_cs_put_fsm_sup"}.
|
|
|
|
+
|
|
+
|
|
%%
|
|
%% cuttlefish
|
|
%%
|