diff options
author | Franck Cuny <fcuny@twitter.com> | 2017-11-07 08:47:26 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2017-11-07 08:47:26 -0800 |
commit | 28cadb970ca0b1ae6cde58d09eadb6af89999ddf (patch) | |
tree | 3f3d0096bc041ed74868872c43beb9612afebc75 /bin/tw-zk-delete-nodes | |
parent | [emacs] add scala-mode (diff) | |
download | emacs.d-28cadb970ca0b1ae6cde58d09eadb6af89999ddf.tar.gz |
Remove bin, this is now in it's own repo
Diffstat (limited to 'bin/tw-zk-delete-nodes')
-rwxr-xr-x | bin/tw-zk-delete-nodes | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/bin/tw-zk-delete-nodes b/bin/tw-zk-delete-nodes deleted file mode 100755 index b5e995e..0000000 --- a/bin/tw-zk-delete-nodes +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -set -x -set -e - -members=$(echo "ls /messaging/distributedlog/EventBus/" | zk-shell msgzookeeper.atla.twitter.com --run-from-stdin) - -for m in $members; do - if [[ $m =~ ^eventbus_system_loadtest_8_ ]]; then - echo "rmr /messaging/distributedlog/EventBus/$m" | zk-shell msgzookeeper.atla.twitter.com --run-from-stdin - fi -done |