diff options
author | Rene Ladan <rene@FreeBSD.org> | 2017-11-12 16:00:41 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2017-11-12 16:00:41 +0000 |
commit | 1ed575e15fc27a7c4942f85329a024195d32ae2a (patch) | |
tree | ca71e38917e8b3f02e501f3ffdf61aec2c691c39 /databases/cassandra2/files/repaircluster.in | |
parent | Remove expired port: (diff) |
Removing expired port:
2017-11-09 databases/cassandra2: Broken for more than 6 months
Notes
Notes:
svn path=/head/; revision=454052
Diffstat (limited to 'databases/cassandra2/files/repaircluster.in')
-rw-r--r-- | databases/cassandra2/files/repaircluster.in | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/databases/cassandra2/files/repaircluster.in b/databases/cassandra2/files/repaircluster.in deleted file mode 100644 index 678cfa4f4a4d..000000000000 --- a/databases/cassandra2/files/repaircluster.in +++ /dev/null @@ -1,12 +0,0 @@ -#! /bin/sh -set -e -PATH=/bin:/usr/bin:%%LOCALBASE%%/bin:%%PREFIX%%/bin -NODETOOL=%%DATADIR%%/bin/nodetool - -if test $# -eq 0; then - echo "$0 <any node in cluster> [keyspace]" - exit 1; -fi -for i in `$NODETOOL -h $1 ring | cut -d ' ' -f 1 | grep -e '^[0-9]'`; do - $NODETOOL -h $i repair $2 -done |