github.com/rogpeppe/juju@v0.0.0-20140613142852-6337964b789e/juju/osenv/vars.go (about)

     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  )