Added wrapper script "congress_noauth.sh" to execute CLI commands to standalone congress. Also updated README with necessary instructions Change-Id: Icfbb6dbf2f57556bab7218f3664fe152d99a8925
8 lines
160 B
Bash
Executable File
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
|