Fix mountpoint values
This commit is contained in:
@@ -585,7 +585,7 @@ func (self *awsInstanceType) getEbsMountDevices() []string {
|
|||||||
// See: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
|
// See: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
|
||||||
devices := []string{}
|
devices := []string{}
|
||||||
for c := 'f'; c <= 'p'; c++ {
|
for c := 'f'; c <= 'p'; c++ {
|
||||||
devices = append(devices, fmt.Sprintf("/dev/sd%s", c))
|
devices = append(devices, fmt.Sprintf("/dev/sd%c", c))
|
||||||
}
|
}
|
||||||
return devices
|
return devices
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user