From 619d3de2350af668ebdc40749559bf927c2f36fc Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 11 Feb 2024 22:13:45 +0100 Subject: [PATCH] fix name for earlang cookie --- install/apache-couchdb-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/apache-couchdb-install.sh b/install/apache-couchdb-install.sh index c3419c47..1fcdb489 100644 --- a/install/apache-couchdb-install.sh +++ b/install/apache-couchdb-install.sh @@ -24,7 +24,7 @@ msg_ok "Installed Dependencies" msg_info "Installing Apache CouchDB" ERLANG_COOKIE=$(openssl rand -base64 32) ADMIN_PASS="$(openssl rand -base64 18 | cut -c1-13)" -debconf-set-selections <<< "couchdb couchdb/erlang_cookie string $ERLANG_COOKIE" +debconf-set-selections <<< "couchdb couchdb/cookie string $ERLANG_COOKIE" debconf-set-selections <<< "couchdb couchdb/mode select standalone" debconf-set-selections <<< "couchdb couchdb/bindaddress string 0.0.0.0" debconf-set-selections <<< "couchdb couchdb/adminpass password $ADMIN_PASS"