Merge pull request #201 from crawford/configdrive

configdrive: fix root path
This commit is contained in:
Alex Crawford
2014-08-11 20:11:17 -07:00
2 changed files with 22 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ type configDrive struct {
}
func NewDatasource(root string) *configDrive {
return &configDrive{path.Join(root, "openstack"), ioutil.ReadFile}
return &configDrive{root, ioutil.ReadFile}
}
func (cd *configDrive) IsAvailable() bool {