Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
add support for confidential jbods
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed Feb 14, 2013
1 parent 61ae4cc commit 2bfcf5d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mxmount
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ sub parse_data {
if($D->{label} =~ /^X/) {
$D->{mountpoint} = 'X/' . $D->{label};
$D->{label} = lc($D->{label});
} elsif($D->{label} =~ /^C/) {
$D->{mountpoint} = 'C/' . $D->{label};
$D->{label} = lc($D->{label});
$D->{noexport} = 1;
} elsif($D->{label} =~ /^data(.*)/) {
$D->{mountpoint} = $1;
} else {
Expand Down

0 comments on commit 2bfcf5d

Please sign in to comment.