summaryrefslogtreecommitdiffstats
path: root/Assemble.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2009-05-11 15:16:49 +1000
committerNeilBrown <neilb@suse.de>2009-05-11 15:16:49 +1000
commit745f72f61ab363dbc1c19fd00cc29edc42571f62 (patch)
tree521efe574fa8741cf02b925369968e2a328d2478 /Assemble.c
parentd7ba0c55f07d24b51e6da1a5850d7164e9cf01d9 (diff)
downloadmdadm-745f72f61ab363dbc1c19fd00cc29edc42571f62.tar.gz
mdadm-745f72f61ab363dbc1c19fd00cc29edc42571f62.tar.xz
mdadm-745f72f61ab363dbc1c19fd00cc29edc42571f62.zip
assemble: support arrays created with --homehost=any
If an array is created with --homehost=any, then --assemble and --incremental will treat it as being local to 'this' host, no matter what the name of this host is. This is useful for array that will be given unique names and be moved between machines. This needs to be documented. Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'Assemble.c')
-rw-r--r--Assemble.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Assemble.c b/Assemble.c
index 4cf5405..47b8839 100644
--- a/Assemble.c
+++ b/Assemble.c
@@ -478,7 +478,8 @@ int Assemble(struct supertype *st, char *mddev,
st->ss->getinfo_super(st, content);
trustworthy = FOREIGN;
- switch (st->ss->match_home(st, homehost)) {
+ switch (st->ss->match_home(st, homehost)
+ ?: st->ss->match_home(st, "any")) {
case 0:
trustworthy = FOREIGN;
name = content->name;