Sha256: 43e61f7b153eccc10ec175b2259dd31ba58ff28d6649843f618a9fd441dd1a03

Contents?: true

Size: 696 Bytes

Versions: 28

Compression:

Stored size: 696 Bytes

Contents

#!/bin/sh

# guest:guest has full access to /

sudo rabbitmqctl add_vhost /
sudo rabbitmqctl add_user guest guest
sudo rabbitmqctl set_permissions -p / guest ".*" ".*" ".*"


# amqp_gem:amqp_gem_password has full access to amqp_gem_testbed

sudo rabbitmqctl add_vhost amqp_gem_testbed
sudo rabbitmqctl add_user amqp_gem amqp_gem_password
sudo rabbitmqctl set_permissions -p amqp_gem_testbed amqp_gem ".*" ".*" ".*"


# amqp_gem_reader:reader_password has read access to amqp_gem_testbed

sudo rabbitmqctl add_user amqp_gem_reader reader_password
sudo rabbitmqctl clear_permissions -p amqp_gem_testbed guest
sudo rabbitmqctl set_permissions -p amqp_gem_testbed amqp_gem_reader "^---$" "^---$" ".*"

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
amqp-1.0.4 bin/ci/before_build.sh
amqp-1.0.3 bin/ci/before_build.sh
amqp-1.0.2 bin/ci/before_build.sh
amqp-1.0.1 bin/ci/before_build.sh
amqp-1.0.0 bin/ci/before_build.sh
amqp-0.9.10 bin/ci/before_build.sh
amqp-0.9.9 bin/ci/before_build.sh
amqp-0.9.8 bin/ci/before_build.sh
amqp-1.0.0.pre2 bin/ci/before_build.sh
amqp-0.9.7 bin/ci/before_build.sh
amqp-0.9.6 bin/ci/before_build.sh
amqp-1.0.0.pre1 bin/ci/before_build.sh
amqp-0.9.5 bin/ci/before_build.sh
amqp-0.9.4 bin/ci/before_build.sh
amqp-0.9.3 bin/ci/before_build.sh
amqp-0.9.2 bin/ci/before_build.sh
amqp-0.9.1 bin/ci/before_build.sh
amqp-0.9.0 bin/ci/before_build.sh
amqp-0.9.0.pre3 bin/ci/before_build.sh
amqp-0.9.0.pre2 bin/ci/before_build.sh