From 6efb8ff1b7da49b45039d8a163176bb2e0757466 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 15 Nov 2018 16:15:01 -0500 Subject: [PATCH] Add globbing protection to nodestorage command This mitigates risk of mistargeting a nodestorage command due to unfortunate bash glob match. --- confluent_client/confluent_env.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_client/confluent_env.sh b/confluent_client/confluent_env.sh index 870a2fa6..3ca671ad 100644 --- a/confluent_client/confluent_env.sh +++ b/confluent_client/confluent_env.sh @@ -36,6 +36,7 @@ alias nodereseat='CURRENT_CMDLINE=$(HISTTIMEFORMAT= builtin history 1); export C alias noderun='CURRENT_CMDLINE=$(HISTTIMEFORMAT= builtin history 1); export CURRENT_CMDLINE; noderun' alias nodesensors='CURRENT_CMDLINE=$(HISTTIMEFORMAT= builtin history 1); export CURRENT_CMDLINE; nodesensors' alias nodesetboot='CURRENT_CMDLINE=$(HISTTIMEFORMAT= builtin history 1); export CURRENT_CMDLINE; nodesetboot' +alias nodestorage='CURRENT_CMDLINE=$(HISTTIMEFORMAT= builtin history 1); export CURRENT_CMDLINE; nodestorage' alias nodeshell='CURRENT_CMDLINE=$(HISTTIMEFORMAT= builtin history 1); export CURRENT_CMDLINE; nodeshell'