extrahd.cgi: Add is_configured function.

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Stefan Schantl
2023-08-01 17:48:32 +02:00
committed by Michael Tremer
parent d0a6f9bdb2
commit 0aa77c2fd5

View File

@@ -690,3 +690,15 @@ sub is_swap ($) {
return 1 if(grep /$device/, @swaps);
}
#
## Returns "True" if a drive is a configured one.
#
sub is_configured ($) {
my ($path) = @_;
# Loop through the hash of configured drives.
foreach my $uuid (keys %configured_drives) {
return 1 if($configured_drives{$uuid} eq "$path");
}
}