X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fevent.c;h=047e9281fe8feabd8790d833780f4e9abe159bc6;hp=242ae81bf1a756306c97db74ee0e69d62ae4d487;hb=8b46ab92aeff52b7354bf4f250835f75b4bd824c;hpb=83a587b79e9a5a5279f1c7a26918fc8c08523a7f diff --git a/discover/event.c b/discover/event.c index 242ae81..047e928 100644 --- a/discover/event.c +++ b/discover/event.c @@ -49,14 +49,14 @@ static int event_parse_ad_header(char *buf, int len, enum event_action *action, *action = EVENT_ACTION_REMOVE; else if (streq(buf, "url")) *action = EVENT_ACTION_URL; - else if (streq(buf, "conf")) - *action = EVENT_ACTION_CONF; else if (streq(buf, "dhcp")) *action = EVENT_ACTION_DHCP; else if (streq(buf, "boot")) *action = EVENT_ACTION_BOOT; else if (streq(buf, "sync")) *action = EVENT_ACTION_SYNC; + else if (streq(buf, "plugin")) + *action = EVENT_ACTION_PLUGIN; else { pb_log("%s: unknown action: %s\n", __func__, buf); return -1;