From: Apollon Oikonomopoulos Date: Mon, 28 Feb 2011 11:51:05 +0000 (+0200) Subject: Add DTS_MIRRORED frozenset X-Git-Tag: v2.5.0beta1~579 X-Git-Url: https://code.grnet.gr/git/ganeti-local/commitdiff_plain/85a0ff7e4914d42e13675bf837d2eeadb12b5591 Add DTS_MIRRORED frozenset Use DTS_MIRRORED to indicate mirrored disk templates that allow migrations/failover. DTS_MIRRORED is the union of DTS_EXT_MIRROR and DTS_NET_MIRROR. Signed-off-by: Apollon Oikonomopoulos Reviewed-by: Michael Hanselmann Signed-off-by: Iustin Pop Reviewed-by: Iustin Pop --- diff --git a/lib/constants.py b/lib/constants.py index 4c55f3a..e214336 100644 --- a/lib/constants.py +++ b/lib/constants.py @@ -379,6 +379,10 @@ DTS_GROWABLE = frozenset([DT_PLAIN, DT_DRBD8, DT_FILE, DT_SHARED_FILE]) # the set of disk templates that allow adoption DTS_MAY_ADOPT = frozenset([DT_PLAIN]) +# the set of disk templates that allow migrations +DTS_MIRRORED = frozenset.union(DTS_NET_MIRROR, DTS_EXT_MIRROR) + + # logical disk types LD_LV = "lvm" LD_DRBD8 = "drbd8"