monitor: Remove hardcoded watchdog event names
Signed-off-by: Hani Benhabiles <hani@linux.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
08ab59770d
commit
4bb08af34e
11
monitor.c
11
monitor.c
@ -4521,16 +4521,15 @@ void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
|
||||
|
||||
void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (nb_args != 2) {
|
||||
return;
|
||||
}
|
||||
readline_set_completion_index(rs, strlen(str));
|
||||
add_completion_option(rs, str, "reset");
|
||||
add_completion_option(rs, str, "shutdown");
|
||||
add_completion_option(rs, str, "poweroff");
|
||||
add_completion_option(rs, str, "pause");
|
||||
add_completion_option(rs, str, "debug");
|
||||
add_completion_option(rs, str, "none");
|
||||
for (i = 0; WatchdogExpirationAction_lookup[i]; i++) {
|
||||
add_completion_option(rs, str, WatchdogExpirationAction_lookup[i]);
|
||||
}
|
||||
}
|
||||
|
||||
void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
|
||||
|
Loading…
x
Reference in New Issue
Block a user