c9021c2116
There's no need to install qpid-tools and run qpid-config for this case. The check on the process output should be enough. This also removes qpid-tools as a dependency for the qpid jobs. Change-Id: Ie81a2630cb5d593729b18569cc82b83e9817f6ab
51 lines
1.1 KiB
Bash
Executable File
51 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# require qpidd, qpid-tools sasl2-bin/cyrus-sasl-plain+cyrus-sasl-lib
|
|
|
|
. tools/functions.sh
|
|
|
|
DATADIR=$(mktemp -d /tmp/OSLOMSG-QPID.XXXXX)
|
|
trap "clean_exit $DATADIR" EXIT
|
|
|
|
[ -f "/usr/lib/qpid/daemon/acl.so" ] && LIBACL="load-module=/usr/lib/qpid/daemon/acl.so"
|
|
|
|
cat > ${DATADIR}/qpidd.conf <<EOF
|
|
port=65123
|
|
acl-file=${DATADIR}/qpidd.acl
|
|
sasl-config=${DATADIR}/sasl2
|
|
${LIBACL}
|
|
mgmt-enable=yes
|
|
auth=yes
|
|
log-to-stderr=no
|
|
|
|
# Used by AMQP1.0 only
|
|
queue-patterns=exclusive
|
|
queue-patterns=unicast
|
|
topic-patterns=broadcast
|
|
EOF
|
|
|
|
cat > ${DATADIR}/qpidd.acl <<EOF
|
|
group admin stackqpid@QPID
|
|
acl allow admin all
|
|
acl deny all all
|
|
EOF
|
|
|
|
mkdir -p ${DATADIR}/sasl2
|
|
cat > ${DATADIR}/sasl2/qpidd.conf <<EOF
|
|
pwcheck_method: auxprop
|
|
auxprop_plugin: sasldb
|
|
sasldb_path: ${DATADIR}/qpidd.sasldb
|
|
mech_list: PLAIN
|
|
EOF
|
|
|
|
echo secretqpid | saslpasswd2 -c -p -f ${DATADIR}/qpidd.sasldb -u QPID stackqpid
|
|
|
|
QPIDD=$(which qpidd 2>/dev/null)
|
|
|
|
mkfifo ${DATADIR}/out
|
|
$QPIDD --log-enable info+ --log-to-file ${DATADIR}/out --config ${DATADIR}/qpidd.conf &
|
|
wait_for_line "Broker .*running" "error" ${DATADIR}/out
|
|
|
|
$*
|