remove references to keystone light

This commit is contained in:
termie 2012-01-09 13:11:11 -08:00
parent 9238a020ee
commit 19675450d4
1 changed files with 3 additions and 3 deletions

6
bin/ks
View File

@ -50,7 +50,7 @@ class LoadData(BaseApp):
self.add_param('fixture', nargs='+')
def main(self):
"""Given some fixtures, create the appropriate data in Keystone Light."""
"""Given some fixtures, create the appropriate data in Keystone."""
pass
@ -64,7 +64,7 @@ class CrudCommands(BaseApp):
self.add_param('keyvalues', nargs='+')
def main(self):
"""Given some keyvalues create the appropriate data in Keystone Light."""
"""Given some keyvalues create the appropriate data in Keystone."""
c = client.HttpClient(self.params.url, token=self.params.token)
action_name = self.ACTION_MAP[self.params.action]
kv = self._parse_keyvalues(self.params.keyvalues)
@ -97,7 +97,7 @@ class Auth(BaseApp):
self.add_param('keyvalues', nargs='+')
def main(self):
"""Attempt to authenticate against the Keystone Light API."""
"""Attempt to authenticate against the Keystone API."""
c = client.HttpClient(self.params.url, token=self.params.token)
kv = self._parse_keyvalues(self.params.keyvalues)
resp = c.authenticate(**kv)