|
@@ -69,7 +69,7 @@ func GetSMARTData(disk string) (*SMARTData, error) {
|
|
|
// Check if the path is the disk path instead of partition path
|
|
|
func IsRootDisk(deviceFilePath string) bool {
|
|
|
deviceFilename := filepath.Base(deviceFilePath)
|
|
|
- if !strings.HasPrefix(deviceFilename, "sd") || strings.HasPrefix(deviceFilename, "nvme") {
|
|
|
+ if !(strings.HasPrefix(deviceFilename, "sd") || strings.HasPrefix(deviceFilename, "nvme")) {
|
|
|
return false
|
|
|
}
|
|
|
if strings.HasPrefix(deviceFilename, "sd") && len(deviceFilename) > 3 {
|