#include <crm_internal.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <crm/crm.h>
#include <crm/common/util.h>
#include <crm/common/agents_compat.h>
Go to the source code of this file.
char* crm_generate_ra_key |
( |
const char * |
standard, |
|
|
const char * |
provider, |
|
|
const char * |
type |
|
) |
| |
int crm_parse_agent_spec |
( |
const char * |
spec, |
|
|
char ** |
standard, |
|
|
char ** |
provider, |
|
|
char ** |
type |
|
) |
| |
Parse a "standard[:provider]:type" agent specification.
- Parameters
-
[in] | spec | Agent specification |
[out] | standard | Newly allocated memory containing agent standard (or NULL) |
[out] | provider | Newly allocated memory containing agent provider (or NULL) |
| put] | type Newly allocated memory containing agent type (or NULL) |
- Returns
- pcmk_ok if the string could be parsed, -EINVAL otherwise
- Note
- It is acceptable for the type to contain a ':' if the standard supports that. For example, systemd supports the form "systemd:UNIT@A:B".
-
It is the caller's responsibility to free the returned values.
Definition at line 120 of file agents.c.
bool crm_provider_required |
( |
const char * |
standard | ) |
|
int pcmk__effective_rc |
( |
int |
rc | ) |
|
uint32_t pcmk_get_ra_caps |
( |
const char * |
standard | ) |
|
Get capabilities of a resource agent standard.
- Parameters
-
[in] | standard | Standard name |
- Returns
- Bitmask of enum pcmk_ra_caps values
Definition at line 31 of file agents.c.
bool pcmk_stonith_param |
( |
const char * |
param | ) |
|
Check whether a given stonith parameter is handled by Pacemaker.
Return true if a given string is the name of one of the special resource instance attributes interpreted directly by Pacemaker for stonith-class resources.
- Parameters
-
[in] | param | Parameter name to check |
- Returns
- true if
param
is a special fencing parameter
Definition at line 170 of file agents.c.