github.com/mwhudson/juju@v0.0.0-20160512215208-90ff01f3497f/container/storage.go (about) 1 // Copyright 2015 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package container 5 6 // StorageConfig defines how the container will be configured to support 7 // storage requirements. 8 type StorageConfig struct { 9 10 // AllowMount is true is the container is required to allow 11 // mounting block devices. 12 AllowMount bool 13 }