diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-10-08 11:27:18 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-10-08 11:28:00 -0500 |
commit | 94053613671f7456ea5114a8421d0e6868bdbba0 (patch) | |
tree | f81e1585e9b9e76dd74a0c8381926ed7b1c6e8be /auth/auth-cass/cass_init/data.sh | |
parent | 49525303bc07064d60b3dde3056b2e9e8a379435 (diff) |
Artifacts to Bootstrap
Issue-ID: AAF-543
Change-Id: I95d11b11c21ddeb63e393528c2504af673d27a6f
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-cass/cass_init/data.sh')
-rw-r--r-- | auth/auth-cass/cass_init/data.sh | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/auth/auth-cass/cass_init/data.sh b/auth/auth-cass/cass_init/data.sh deleted file mode 100644 index 0374e619..00000000 --- a/auth/auth-cass/cass_init/data.sh +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/bash -# -# Copies of Repo data need to be added to "dats" dir for loading by push.sh -# -# Further, repo data has dates that are out of date. We need to update reasonable -# expiration dates -# - -DIR=/opt/app/aaf/cass_init -cd $DIR/dats -ID_FILE=$DIR/opt/app/aaf/cass_init/ - - if [ -e $ID_FILE ]; then - if [ "$(uname -s)" = "Darwin" ]; then - DATE=$(date "+%Y-%m-%d %H:%M:%S.000+0000" -v "+6m") - else - DATE=$(date "+%Y-%m-%d %H:%M:%S.000+0000" -d "+6 months") - fi - echo $DATE - CRED="cred.dat" - # Enter for People - echo "Default Passwords for People" - for ID in $(grep '|a|' $ID_FILE | sed -e "s/|.*//"); do - if [ "$ID" = "aaf" ]; then - DOMAIN="aaf.osaaf.org"; - else - DOMAIN="$ID.onap.org"; - fi - unset FIRST - for D in ${DOMAIN//./ }; do - if [ -z "$FIRST" ]; then - NS="$D" - FIRST="N" - else - NS="$D.$NS" - fi - done - echo "$ID@$DOMAIN|2|${DATE}|0xd993c5617486296f1b99d04de31633332b8ba1a550038e23860f9dbf0b2fcf95|Initial ID|$NS|53344|" >> $CRED - done - - for ID in $(grep '|e|' $ID_FILE | sed -e "s/|.*//"); do - echo "$ID@people.osaaf.org|2|${DATE}|0xd993c5617486296f1b99d04de31633332b8ba1a550038e23860f9dbf0b2fcf95|Initial ID|org.osaaf.people|53344|" >> $CRED - done - - mv user_role.dat tmp - sed "s/\(^.*|\)\(.*|\)\(.*|\)\(.*\)/\1${DATE}|\3\4/" tmp > user_role.dat - - for DAT in ns perm role ns_attrib user_role cred; do - $DOCKER container cp $DAT.dat aaf_cass:/tmp/$DAT.dat - $DOCKER exec aaf_cass bash /usr/bin/cqlsh -k authz -e "COPY authz.$DAT FROM '/tmp/$DAT.dat' WITH DELIMITER='|'" - $DOCKER exec -t aaf_cass rm /tmp/$DAT.dat - done - rm $CRED - mv tmp user_role.dat - else - echo DInstall requires access to 'identities.dat' - fi - cd - - |