~juju-qa/ubuntu/xenial/juju/2.0-rc2

« back to all changes in this revision

Viewing changes to src/github.com/juju/juju/cmd/juju/commands/main.go

  • Committer: Nicholas Skaggs
  • Date: 2016-09-30 14:39:30 UTC
  • mfrom: (1.8.1)
  • Revision ID: nicholas.skaggs@canonical.com-20160930143930-vwwhrefh6ftckccy
import upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
var jujuDoc = `
60
60
juju provides easy, intelligent application orchestration on top of cloud
61
 
infrastructure providers such as Amazon EC2, HP Cloud, MaaS, OpenStack, Windows
62
 
Azure, or your local machine.
 
61
infrastructure providers such as Amazon EC2, MaaS, OpenStack, Windows, Azure,
 
62
or your local machine.
63
63
 
64
64
https://jujucharms.com/
65
65
`
305
305
        r.Register(model.NewDefaultsCommand())
306
306
        r.Register(model.NewRetryProvisioningCommand())
307
307
        r.Register(model.NewDestroyCommand())
308
 
        r.Register(model.NewUsersCommand())
309
308
        r.Register(model.NewGrantCommand())
310
309
        r.Register(model.NewRevokeCommand())
311
310
        r.Register(model.NewShowCommand())
329
328
 
330
329
        // Manage and control services
331
330
        r.Register(application.NewAddUnitCommand())
332
 
        r.Register(application.NewGetCommand())
333
 
        r.Register(application.NewSetCommand())
334
 
        r.Register(application.NewDeployCommand())
 
331
        r.Register(application.NewConfigCommand())
 
332
        r.Register(application.NewDefaultDeployCommand())
335
333
        r.Register(application.NewExposeCommand())
336
334
        r.Register(application.NewUnexposeCommand())
337
335
        r.Register(application.NewServiceGetConstraintsCommand())