github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/provider/lxd/lxd.go (about) 1 // Copyright 2015 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 // +build go1.3 5 6 package lxd 7 8 import ( 9 "github.com/juju/loggo" 10 11 "github.com/juju/juju/tools/lxdclient" 12 ) 13 14 // The metadata keys used when creating new instances. 15 const ( 16 metadataKeyCloudInit = lxdclient.UserdataKey 17 ) 18 19 // Common metadata values used when creating new instances. 20 const ( 21 metadataValueTrue = "true" 22 metadataValueFalse = "false" 23 ) 24 25 var ( 26 logger = loggo.GetLogger("juju.provider.lxd") 27 )