~rogpeppe/juju-core/492-sshinit-log-stdout

« back to all changes in this revision

Viewing changes to cmd/jujud/agent.go

  • Committer: John Arbash Meinel
  • Date: 2013-07-09 11:31:00 UTC
  • mto: (1384.3.6 upgrader-api-worker)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: john@arbash-meinel.com-20130709113100-2mira0ti15p5nm67
Turn environs/agent into a top level agent/ package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
import (
7
7
        "fmt"
8
8
        "io"
 
9
        "time"
 
10
 
9
11
        "launchpad.net/gnuflag"
 
12
 
 
13
        "launchpad.net/juju-core/agent"
10
14
        "launchpad.net/juju-core/cmd"
11
 
        "launchpad.net/juju-core/environs/agent"
12
15
        "launchpad.net/juju-core/errors"
13
16
        "launchpad.net/juju-core/log"
14
17
        "launchpad.net/juju-core/state"
16
19
        "launchpad.net/juju-core/state/api/params"
17
20
        "launchpad.net/juju-core/worker"
18
21
        "launchpad.net/juju-core/worker/deployer"
19
 
        "time"
20
22
)
21
23
 
22
24
// requiredError is useful when complaining about missing command-line options.