Update version to 2.2.0-rc.3

This commit is contained in:
Jason Ertel
2020-08-25 15:16:09 -04:00
parent 61cc5b9712
commit 3122280bd5
3 changed files with 10 additions and 2 deletions

View File

@@ -1 +1 @@
2.1.0-rc.2 2.2.0-rc.3

View File

@@ -30,3 +30,8 @@ header() {
echo echo
printf '%s\n' "$banner" "$*" "$banner" printf '%s\n' "$banner" "$*" "$banner"
} }
lookup_pillar() {
key=$1
cat /opt/so/saltstack/local/pillar/global.sls | grep $key | awk '{print $2}'
}

View File

@@ -189,7 +189,10 @@ case "${operation}" in
validateEmail "$email" validateEmail "$email"
createUser "$email" createUser "$email"
echo "Successfully added new user" echo "Successfully added new user to SOC"
echo $password | so-thehive-user-add "$email"
echo $password | so-cortex-user-add "$email"
echo $password | so-fleet-user-add "$email"
;; ;;
"list") "list")