github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/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  }