diff options
author | albertogp <albertogp@uma.es> | 2021-05-04 13:26:45 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2021-05-26 17:29:42 +0200 |
commit | c17ffa5d032a82e8eca61481dd8a8adb8b3fc5b1 (patch) | |
tree | 0823cbb3a597b80ae7317f3802fb557d3bd88faf /admin/Interface | |
parent | 29c2c73e14d90cfa803b21765c1dc6dc8a7252ad (diff) |
#1037 Add disk type
To help users choosing which preparation a computer needs according to
its disk type, this commit:
* Adds cloning engine support to retrieve disk type data from the
computer when refreshing disks partition schema.
* Adds WebConsole support to read disk type data from the database and
show it on partition drawing.
See also commits with #1037 in ogClient and ogServer repo.
Co-authored-by: Javier Sánchez Parra <jsanchez@soleta.eu>
Diffstat (limited to 'admin/Interface')
-rwxr-xr-x | admin/Interface/getConfiguration | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/admin/Interface/getConfiguration b/admin/Interface/getConfiguration index ddfc3821..2173cca3 100755 --- a/admin/Interface/getConfiguration +++ b/admin/Interface/getConfiguration @@ -26,7 +26,9 @@ for ((dsk=1; dsk<=$disks; dsk++)); do *) ptt=0 ;; esac # Información de disco (partición 0) - cfg="$cfg$dsk:0:$ptt:::$(ogGetDiskSize $dsk):0;" + devpath=$(ogDiskToDev "$dsk") + dsktype=$(ogGetDiskType "$devpath") + cfg="$cfg$dsk:$dsktype:0:$ptt:::$(ogGetDiskSize $dsk):0;" for ((par=1;par<=$particiones;par++)); do # Código del identificador de tipo de partición cod=$(ogGetPartitionId $dsk $par 2>/dev/null) @@ -74,6 +76,9 @@ awk '{ n=split($0,sep,";"); c=split (sep[i],dua,":"); if (i==1 && c==1) printf ("ser=%s\n", dua[1]); + else if (c==8) + printf("disk=%s\tdtype=%s\tpar=%s\tcpt=%s\tfsi=%s\tsoi=%s\ttam=%s\tuso=%s\n", + dua[1],dua[2],dua[3],dua[4],dua[5],dua[6],dua[7],dua[8]); else printf ("disk=%s\tpar=%s\tcpt=%s\tfsi=%s\tsoi=%s\ttam=%s\tuso=%s\n", dua[1],dua[2],dua[3],dua[4],dua[5],dua[6],dua[7]); |