Files
python-congressclient/congress_noauth
Amey Bhide 7604b3ede5 Script to execute CLI cmds to standalone Congress
Added wrapper script "congress_noauth.sh" to execute CLI commands
to standalone congress.
Also updated README with necessary instructions

Change-Id: Icfbb6dbf2f57556bab7218f3664fe152d99a8925
2015-03-05 13:07:05 -08:00

8 lines
160 B
Bash
Executable File

#!/bin/bash
CONGRESS_URL="http://127.0.0.1:1789"
COMMAND_PREFIX="openstack --os-token foo --os-url $CONGRESS_URL congress"
CMD="$COMMAND_PREFIX $@"
exec $CMD