~cloud-green/juju-core/charmstore-sdist

« back to all changes in this revision

Viewing changes to launchpad.net/juju-core/juju/osenv/vars.go

  • Committer: Casey Marshall
  • Date: 2014-03-27 15:59:46 UTC
  • Revision ID: cmars@cmarstech.com-20140327155946-8huorf37g0zwar43
Source distribution of launchpad.net/juju-core created 20140327105939

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2013 Canonical Ltd.
 
2
// Licensed under the AGPLv3, see LICENCE file for details.
 
3
 
 
4
package osenv
 
5
 
 
6
const (
 
7
        JujuEnvEnvKey           = "JUJU_ENV"
 
8
        JujuHomeEnvKey          = "JUJU_HOME"
 
9
        JujuRepositoryEnvKey    = "JUJU_REPOSITORY"
 
10
        JujuLoggingConfigEnvKey = "JUJU_LOGGING_CONFIG"
 
11
        // TODO(thumper): 2013-09-02 bug 1219630
 
12
        // As much as I'd like to remove JujuContainerType now, it is still
 
13
        // needed as MAAS still needs it at this stage, and we can't fix
 
14
        // everything at once.
 
15
        JujuContainerTypeEnvKey = "JUJU_CONTAINER_TYPE"
 
16
)