summaryrefslogtreecommitdiffstats
path: root/auth/sample/backup/cbackup.sh
diff options
context:
space:
mode:
authorInstrumental <jcgmisc@stl.gathman.org>2018-04-23 15:43:47 -0500
committerInstrumental <jcgmisc@stl.gathman.org>2018-04-23 15:44:51 -0500
commit12f7f46efd897a01ebe7894d0f26f95a6c8e2672 (patch)
tree5aef7b8c1e6960c936f11126b0575d6bb86d8f4f /auth/sample/backup/cbackup.sh
parent0d04b7513ab8f5c3bd9967fad9772688113fe437 (diff)
Add sample AAF Setup Demoing
Issue-ID: AAF-256 Change-Id: I1d21238c48cee5fa64184bf014d9cde975d51583 Signed-off-by: Instrumental <jcgmisc@stl.gathman.org>
Diffstat (limited to 'auth/sample/backup/cbackup.sh')
-rw-r--r--auth/sample/backup/cbackup.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/auth/sample/backup/cbackup.sh b/auth/sample/backup/cbackup.sh
new file mode 100644
index 00000000..9c91d0c6
--- /dev/null
+++ b/auth/sample/backup/cbackup.sh
@@ -0,0 +1,8 @@
+cd /opt/app/cass_backup
+DATA="ns role perm ns_attrib user_role cred cert x509 delegate approval approved future notify artifact health history"
+PWD=cassandra
+CQLSH="cqlsh -u cassandra -k authz -p $PWD"
+for T in $DATA ; do
+ echo "Creating $T.dat"
+ $CQLSH -e "COPY authz.$T TO '$T.dat' WITH DELIMITER='|'"
+done