Page MenuHomePhabricator
Authored By
bd808
Jun 1 2020, 2:56 AM
Size
550 B
Referenced Files
None
Subscribers
None
#!/bin/bash
# Ugly script to generate password data
# for the Tool Labs elasticsearch cluster
set -o nounset
set -o errexit
USER=${1:?Missing USER}
PASS=$(openssl rand -base64 32)
SHA512=$(printf $PASS | mkpasswd --stdin --method=sha-512)
echo "${1} .elasticsearch.ini"
echo "----"
echo "user=${USER}"
echo "password=${PASS}"
echo "----"
echo
echo "${1} puppet master private (hieradata/labs/tools/common.yaml)"
echo "----"
echo "profile::toolforge::elasticsearch::haproxy::elastic_users:"
echo " - name: '${1}'"
echo " password: '${SHA512}'"

File Metadata

Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
8422982
Default Alt Text
raw.txt (550 B)

Event Timeline