From 1b22cebe023cf16b001418d9c2693292a2351817 Mon Sep 17 00:00:00 2001 From: benschermel Date: Tue, 10 May 2022 12:58:59 -0400 Subject: [PATCH] remove Enterprise references --- pkg/rpm/keydb_build/keydb.spec | 2 +- src/asciilogo.h | 2 +- src/server.cpp | 7 ++----- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/pkg/rpm/keydb_build/keydb.spec b/pkg/rpm/keydb_build/keydb.spec index b3f7a2639..2fa4ae557 100755 --- a/pkg/rpm/keydb_build/keydb.spec +++ b/pkg/rpm/keydb_build/keydb.spec @@ -27,7 +27,7 @@ getent group keydb &> /dev/null || \ groupadd -r keydb &> /dev/null getent passwd keydb &> /dev/null || \ useradd -r -g keydb -d /var/lib/keydb -s /sbin/nologin \ --c 'KeyDB Enterprise Database Server' keydb &> /dev/null +-c 'KeyDB Database Server' keydb &> /dev/null exit 0 #postinstall scriptlet (using /bin/sh): diff --git a/src/asciilogo.h b/src/asciilogo.h index f4fbd360e..8cc69a76a 100644 --- a/src/asciilogo.h +++ b/src/asciilogo.h @@ -32,7 +32,7 @@ const char *ascii_logo = " _ \n" " _-(+)-_ \n" " _-- / \\ --_ \n" -" _-- / \\ --_ KeyDB Enterprise %s (%s/%d) %s bit \n" +" _-- / \\ --_ KeyDB %s (%s/%d) %s bit \n" " __-- / \\ --__ \n" " (+) _ / \\ _ (+) Running in %s mode\n" " | -- / \\ -- | Port: %d\n" diff --git a/src/server.cpp b/src/server.cpp index 225de1c2a..59a607e70 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -73,8 +73,8 @@ #endif int g_fTestMode = false; -const char *motd_url = "http://api.keydb.dev/motd/motd_server_pro.txt"; -const char *motd_cache_file = "/.keydb-enterprise-server-motd"; +const char *motd_url = "http://api.keydb.dev/motd/motd_server.txt"; +const char *motd_cache_file = "/.keydb-server-motd"; /* Our shared "common" objects */ @@ -6272,10 +6272,7 @@ sds genRedisInfoString(const char *section) { if (sections++) info = sdscat(info,"\r\n"); info = sdscatprintf(info, "# KeyDB\r\n" - "variant:enterprise\r\n" - "license_status:%s\r\n" "mvcc_depth:%d\r\n", - "OK", mvcc_depth ); }