summaryrefslogtreecommitdiffstats
path: root/bin/stack
diff options
context:
space:
mode:
authorAndy Smith <code@term.ie>2011-01-04 14:39:48 -0800
committerAndy Smith <code@term.ie>2011-01-04 14:39:48 -0800
commit5679caa48b90ecebf9a1143bf92cec0e7c0ed1f8 (patch)
tree4a8fec0a16087d858cee00724c462eae17c57535 /bin/stack
parent1a66771aaf49d16d4131a1a787a1fda39aa680fd (diff)
downloadnova-5679caa48b90ecebf9a1143bf92cec0e7c0ed1f8.tar.gz
nova-5679caa48b90ecebf9a1143bf92cec0e7c0ed1f8.tar.xz
nova-5679caa48b90ecebf9a1143bf92cec0e7c0ed1f8.zip
rename easy to direct in the scripts
Diffstat (limited to 'bin/stack')
-rwxr-xr-xbin/stack10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/stack b/bin/stack
index 42feacd63..7a6ce5960 100755
--- a/bin/stack
+++ b/bin/stack
@@ -17,7 +17,7 @@
# License for the specific language governing permissions and limitations
# under the License.
-"""CLI for the Easy API."""
+"""CLI for the Direct API."""
import eventlet
eventlet.monkey_patch()
@@ -42,10 +42,10 @@ from nova import utils
FLAGS = gflags.FLAGS
-gflags.DEFINE_string('host', '127.0.0.1', 'Easy API host')
-gflags.DEFINE_integer('port', 8001, 'Easy API host')
-gflags.DEFINE_string('user', 'user1', 'Easy API username')
-gflags.DEFINE_string('project', 'proj1', 'Easy API project')
+gflags.DEFINE_string('host', '127.0.0.1', 'Direct API host')
+gflags.DEFINE_integer('port', 8001, 'Direct API host')
+gflags.DEFINE_string('user', 'user1', 'Direct API username')
+gflags.DEFINE_string('project', 'proj1', 'Direct API project')
USAGE = """usage: stack [options] <controller> <method> [arg1=value arg2=value]