We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecfdde2 commit 42f83e3Copy full SHA for 42f83e3
install.sh
@@ -14,6 +14,9 @@ echo "Installing rekon to $node..."
14
15
base_dir="`dirname $0`/app"
16
17
+# set allow_mult = false for rekon's bucket
18
+curl -X PUT -H "Content-Type: application/json" -d '{"props":{"allow_mult":false}}' $riak_url/props
19
+
20
# loop through everything in the app directory and put in in the rekon bucket
21
for f in $(ls $base_dir); do
22
# echo "Uploading $f to riak"
@@ -38,7 +41,7 @@ for f in $(ls $base_dir); do
38
41
;;
39
42
esac
40
43
- curl -X PUT -H"Content-Type: $content_type" $riak_url/keys/$f --data-binary @$base_dir/$f
44
+ curl -X PUT -H "Content-Type: $content_type" $riak_url/keys/$f --data-binary @$base_dir/$f
45
done
46
47
echo "Installed, now visit: $riak_url/keys/go"
0 commit comments