Use the default_cloud global option
authorStavros Sachtouris <saxtouri@admin.grnet.gr>
Wed, 12 Jun 2013 13:55:20 +0000 (16:55 +0300)
committerStavros Sachtouris <saxtouri@admin.grnet.gr>
Thu, 13 Jun 2013 15:49:05 +0000 (18:49 +0300)
Refs: #3934 #3979

Conflicts:

kamaki/cli/__init__.py

kamaki/cli/__init__.py

index 955a491..f29ca39 100644 (file)
@@ -255,13 +255,10 @@ def _init_session(arguments, is_non_API=False):
             cloud = _cnf.value.keys('cloud')[0]
         else:
             raise CLIError(
-                'Found %s clouds but none of them is set as default' % (
-                    num_of_clouds),
+                'Found %s clouds but none of them is set as default',
                 importance=2, details=[
                     'Please, choose one of the following cloud names:',
                     ', '.join(_cnf.value.keys('cloud')),
-                    'To see all cloud settings:',
-                    '  kamaki config get cloud.<cloud name>',
                     'To set a default cloud:',
                     '  kamaki config set default_cloud <cloud name>',
                     'To pick a cloud for the current session, use --cloud:',
@@ -285,8 +282,7 @@ def _init_session(arguments, is_non_API=False):
                 'No authentication %s provided for cloud "%s"' % (term, cloud),
                 importance=3, details=[
                     'Set a %s for cloud %s:' % (term, cloud),
-                    '  kamaki config set cloud.%s.%s <%s>' % (
-                        cloud, term, term)])
+                    '  kamaki config set cloud.%s.%s <t0k3n>' % (cloud, term)])
 
     from kamaki.clients.astakos import AstakosClient as AuthCachedClient
     try: