Page Menu
Home
ClusterLabs Projects
Search
Configure Global Search
Log In
Files
F4624702
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/include/crm/common/roles.h b/include/crm/common/roles.h
index c27193f3b4..e78d711df1 100644
--- a/include/crm/common/roles.h
+++ b/include/crm/common/roles.h
@@ -1,56 +1,58 @@
/*
* Copyright 2004-2023 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU Lesser General Public License
* version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
*/
#ifndef PCMK__CRM_COMMON_ROLES__H
# define PCMK__CRM_COMMON_ROLES__H
#ifdef __cplusplus
extern "C" {
#endif
/*!
* \file
* \brief Scheduler API for resource roles
* \ingroup core
*/
/*!
* Possible roles that a resource can be in
* (order matters; values can be compared with less than and greater than)
*/
enum rsc_role_e {
pcmk_role_unknown = 0, //!< Resource role is unknown
pcmk_role_stopped = 1, //!< Stopped
pcmk_role_started = 2, //!< Started
#if !defined(PCMK_ALLOW_DEPRECATED) || (PCMK_ALLOW_DEPRECATED == 1)
//! \deprecated Use pcmk_role_unknown instead
RSC_ROLE_UNKNOWN = pcmk_role_unknown,
//! \deprecated Use pcmk_role_stopped instead
RSC_ROLE_STOPPED = pcmk_role_stopped,
-#endif
+
+ //! \deprecated Use pcmk_role_started instead
RSC_ROLE_STARTED = pcmk_role_started,
+#endif
RSC_ROLE_UNPROMOTED = 3,
RSC_ROLE_PROMOTED = 4,
#if !defined(PCMK_ALLOW_DEPRECATED) || (PCMK_ALLOW_DEPRECATED == 1)
//! \deprecated Use RSC_ROLE_UNPROMOTED instead
RSC_ROLE_SLAVE = RSC_ROLE_UNPROMOTED,
//! \deprecated Use RSC_ROLE_PROMOTED instead
RSC_ROLE_MASTER = RSC_ROLE_PROMOTED,
#endif
};
#ifdef __cplusplus
}
#endif
#endif // PCMK__CRM_COMMON_ROLES__H
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Tue, Jul 8, 6:42 PM (2 h, 26 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2002761
Default Alt Text
(1 KB)
Attached To
Mode
rP Pacemaker
Attached
Detach File
Event Timeline
Log In to Comment