mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
47 lines
1.7 KiB
Bash
47 lines
1.7 KiB
Bash
#!/bin/bash
|
|
# {%- set admin_pass = salt['pillar.get']('secrets:playbook_admin', None) -%}
|
|
# {%- set automation_pass = salt['pillar.get']('secrets:playbook_automation', None) %}
|
|
|
|
local_salt_dir=/opt/so/saltstack/local
|
|
|
|
try_count=6
|
|
interval=10
|
|
|
|
while [[ $try_count -le 6 ]]; do
|
|
if docker top "so-playbook"; then
|
|
#Create Automation user
|
|
automation_group=6
|
|
|
|
mapfile -t automation_res < <(
|
|
curl -s --location --request POST 'http://127.0.0.1:3200/playbook/users.json' --user "admin:{{ admin_pass }}" --header 'Content-Type: application/json' --data '{
|
|
"user" : {
|
|
"login" : "Automation",
|
|
"password": "{{ automation_pass }}",
|
|
"firstname": "SecOps",
|
|
"lastname": "Automation",
|
|
"mail": "automation2@localhost.local"
|
|
}
|
|
}' | jq -r '.user.api_key, .user.id'
|
|
)
|
|
|
|
automation_api_key=${automation_res[0]}
|
|
automation_user_id=${automation_res[1]}
|
|
|
|
curl --location --request POST "http://127.0.0.1:3200/playbook/groups/${automation_group}/users.json" \
|
|
--user "admin:{{ admin_pass }}" \
|
|
--header 'Content-Type: application/json' \
|
|
--data "{
|
|
\"user_id\" : ${automation_user_id}
|
|
}"
|
|
|
|
if (grep -qi "playbook_api_key" $local_salt_dir/pillar/global.sls); then
|
|
sed -i "/s/playbook_api_key:.*/playbook_api_key: ${automation_api_key}/g" $local_salt_dir/pillar/global.sls
|
|
else
|
|
echo " playbook_api_key: ${automation_api_key}" >> $local_salt_dir/pillar/global.sls
|
|
fi
|
|
fi
|
|
((try_count++))
|
|
sleep "${interval}s"
|
|
done
|
|
|