Die Bedingungen der einzelnen Ausgaben angepasset.
This commit is contained in:
parent
fe4ca7fec7
commit
547acc2737
1 changed files with 4 additions and 4 deletions
|
@ -41,18 +41,18 @@ PARTITIONS_PRESENT+=([ROOT]="${CHECK_ROOT}")
|
||||||
|
|
||||||
echo "ESP: ${CHECK_ESP}, USR: ${CHECK_USR}, USRHASH: ${CHECK_USRHASH}, ROOT: ${CHECK_ROOT}"
|
echo "ESP: ${CHECK_ESP}, USR: ${CHECK_USR}, USRHASH: ${CHECK_USRHASH}, ROOT: ${CHECK_ROOT}"
|
||||||
|
|
||||||
if [[ ${PARTITIONS_PRESENT[ROOT]} ]]; then
|
if [[ ${PARTITIONS_PRESENT[ROOT]} -eq 1 ]]; then
|
||||||
echo "Root-Partition vorhanden."
|
echo "Root-Partition vorhanden."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ${PARTITIONS_PRESENT[USR]} ]]; then
|
if [[ ${PARTITIONS_PRESENT[USR]} -eq 1 ]]; then
|
||||||
echo "/usr-Partition vorhanden."
|
echo "/usr-Partition vorhanden."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ${PARTITIONS_PRESENT[USRHASH]} ]]; then
|
if [[ ${PARTITIONS_PRESENT[USRHASH]} -eq 1 ]]; then
|
||||||
echo "/usr-Verity-Partition vorhanden."
|
echo "/usr-Verity-Partition vorhanden."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ${PARTITIONS_PRESENT[ESP]} ]]; then
|
if [[ ${PARTITIONS_PRESENT[ESP]} -eq 1 ]]; then
|
||||||
echo "ESP-Partition vorhanden."
|
echo "ESP-Partition vorhanden."
|
||||||
fi
|
fi
|
Loading…
Reference in a new issue