#include <config.h>
#include <glib.h>
#include <stdbool.h>
Go to the source code of this file.
|
void | pcmk__set_cli_options (const char *short_options, const char *usage, pcmk__cli_option_t *long_options, const char *app_desc) |
|
int | pcmk__next_cli_option (int argc, char **argv, int *index, const char **longname) |
|
_Noreturn void | pcmk__cli_help (char cmd, crm_exit_t exit_code) |
|
void | pcmk__cli_option_cleanup (void) |
|
const char * | pcmk__env_option (const char *option) |
|
void | pcmk__set_env_option (const char *option, const char *value) |
| Set or unset a Pacemaker environment variable option. More...
|
|
bool | pcmk__env_option_enabled (const char *daemon, const char *option) |
|
const char * | pcmk__cluster_option (GHashTable *options, pcmk__cluster_option_t *option_list, int len, const char *name) |
|
void | pcmk__print_option_metadata (const char *name, const char *version, const char *desc_short, const char *desc_long, pcmk__cluster_option_t *option_list, int len) |
|
void | pcmk__validate_cluster_options (GHashTable *options, pcmk__cluster_option_t *option_list, int len) |
|
bool | pcmk__valid_interval_spec (const char *value) |
|
bool | pcmk__valid_boolean (const char *value) |
|
bool | pcmk__valid_number (const char *value) |
|
bool | pcmk__valid_positive_number (const char *value) |
|
bool | pcmk__valid_quorum (const char *value) |
|
bool | pcmk__valid_script (const char *value) |
|
bool | pcmk__valid_utilization (const char *value) |
|
long | pcmk__get_sbd_timeout (void) |
|
bool | pcmk__get_sbd_sync_resource_startup (void) |
|
long | pcmk__auto_watchdog_timeout (void) |
|
bool | pcmk__valid_sbd_timeout (const char *value) |
|
#define required_argument 1 |
Enumerator |
---|
pcmk__option_default |
|
pcmk__option_hidden |
|
pcmk__option_paragraph |
|
pcmk__option_example |
|
Definition at line 34 of file options_internal.h.
long pcmk__auto_watchdog_timeout |
( |
void |
| ) |
|
void pcmk__cli_option_cleanup |
( |
void |
| ) |
|
const char* pcmk__cluster_option |
( |
GHashTable * |
options, |
|
|
pcmk__cluster_option_t * |
option_list, |
|
|
int |
len, |
|
|
const char * |
name |
|
) |
| |
const char* pcmk__env_option |
( |
const char * |
option | ) |
|
bool pcmk__env_option_enabled |
( |
const char * |
daemon, |
|
|
const char * |
option |
|
) |
| |
bool pcmk__get_sbd_sync_resource_startup |
( |
void |
| ) |
|
long pcmk__get_sbd_timeout |
( |
void |
| ) |
|
int pcmk__next_cli_option |
( |
int |
argc, |
|
|
char ** |
argv, |
|
|
int * |
index, |
|
|
const char ** |
longname |
|
) |
| |
void pcmk__print_option_metadata |
( |
const char * |
name, |
|
|
const char * |
version, |
|
|
const char * |
desc_short, |
|
|
const char * |
desc_long, |
|
|
pcmk__cluster_option_t * |
option_list, |
|
|
int |
len |
|
) |
| |
void pcmk__set_cli_options |
( |
const char * |
short_options, |
|
|
const char * |
usage, |
|
|
pcmk__cli_option_t * |
long_options, |
|
|
const char * |
app_desc |
|
) |
| |
void pcmk__set_env_option |
( |
const char * |
option, |
|
|
const char * |
value |
|
) |
| |
Set or unset a Pacemaker environment variable option.
Set an environment variable option with both a PCMK_ and (for backward compatibility) HA_ prefix.
- Parameters
-
[in] | option | Environment variable name (without prefix) |
[in] | value | New value (or NULL to unset) |
Definition at line 318 of file options.c.
bool pcmk__valid_boolean |
( |
const char * |
value | ) |
|
bool pcmk__valid_interval_spec |
( |
const char * |
value | ) |
|
bool pcmk__valid_number |
( |
const char * |
value | ) |
|
bool pcmk__valid_positive_number |
( |
const char * |
value | ) |
|
bool pcmk__valid_quorum |
( |
const char * |
value | ) |
|
bool pcmk__valid_sbd_timeout |
( |
const char * |
value | ) |
|
bool pcmk__valid_script |
( |
const char * |
value | ) |
|
bool pcmk__valid_utilization |
( |
const char * |
value | ) |
|