Commit 86ddc0f9 authored by Justin Santa Barbara's avatar Justin Santa Barbara

Fix mountpoint values

parent 49543aca
......@@ -585,7 +585,7 @@ func (self *awsInstanceType) getEbsMountDevices() []string {
// See: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
devices := []string{}
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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment