]> git.ozlabs.org Git - petitboot/blobdiff - discover/event.c
discover/pb-discover: #include <locale.h> for musl libc
[petitboot] / discover / event.c
index 6434b40d39cd944c90cd93ab8681617b3b721ba6..047e9281fe8feabd8790d833780f4e9abe159bc6 100644 (file)
@@ -47,10 +47,16 @@ static int event_parse_ad_header(char *buf, int len, enum event_action *action,
                *action = EVENT_ACTION_ADD;
        else if (streq(buf, "remove"))
                *action = EVENT_ACTION_REMOVE;
-       else if (streq(buf, "conf"))
-               *action = EVENT_ACTION_CONF;
+       else if (streq(buf, "url"))
+               *action = EVENT_ACTION_URL;
        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;