From 89c527854a46df4ca31515f39e55e383870293c9 Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Thu, 6 Aug 2009 18:15:15 +0100 Subject: [PATCH] constants: confd node roles confd will return the node role as an integer, which represents one of the mutually exclusive roles a node can be in. Signed-off-by: Guido Trotter <ultrotter@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/constants.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/constants.py b/lib/constants.py index ffad1aac9..e7d515401 100644 --- a/lib/constants.py +++ b/lib/constants.py @@ -628,3 +628,8 @@ CONFD_REQS = frozenset([ CONFD_REQ_NODE_PIP_BY_INSTANCE_IP, ]) +(CONFD_NODE_ROLE_MASTER, + CONFD_NODE_ROLE_CANDIDATE, + CONFD_NODE_ROLE_OFFLINE, + CONFD_NODE_ROLE_DRAINED) = range(4) + -- GitLab