diff --git a/start-local-podman.sh b/start-local-podman.sh index 0ad3cf9..234932a 100755 --- a/start-local-podman.sh +++ b/start-local-podman.sh @@ -249,7 +249,7 @@ startup() { echo # Version - version="0.13.0" + version="0.14.0" # Folder name for the installation installation_folder="${ES_LOCAL_DIR:-"$script_dir/elastic-start-local"}" @@ -317,12 +317,6 @@ parse_args() { ;; esac done - - # Verify parameter consistency. - if [ "$esonly" = "true" ] && [ "$edot" = "true" ]; then - echo "Error: The --edot parameter requires also Kibana, you cannot use --esonly." - exit 1 - fi } check_requirements() { diff --git a/start-local.sh b/start-local.sh index 0419b58..4075e81 100755 --- a/start-local.sh +++ b/start-local.sh @@ -67,11 +67,6 @@ parse_args() { ;; esac done - # Verify parameter consistency - if [ "$esonly" = "true" ] && [ "$edot" = "true" ]; then - echo "Error: the --edot parameter requires also Kibana, you cannot use --esonly" - exit 1 - fi } startup() { @@ -90,7 +85,7 @@ startup() { echo # Version - version="0.13.0" + version="0.14.0" # Folder name for the installation installation_folder="${ES_LOCAL_DIR:-elastic-start-local}"