~bcsaller/pyjuju/delta-annotations

« back to all changes in this revision

Viewing changes to juju/state/initialize.py

  • Committer: Kapil Thangavelu
  • Date: 2012-12-17 22:14:37 UTC
  • mfrom: (616.1.2 rapi-login)
  • Revision ID: kapil@canonical.com-20121217221437-lhy4eck58wx3sf5n
merge rapi-login

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
        settings = GlobalSettingsStateManager(self.client)
72
72
        yield settings.set_provider_type(self.provider_type)
73
73
 
 
74
        # Create a node that only the admin can read.
 
75
        yield self.client.create("/login", acls=[
 
76
            make_ace(self.admin_identity, all=True)])
 
77
 
74
78
        # This must come last, since clients will wait on it.
75
79
        yield self.client.create("/initialized", acls=acls)
76
80