]> git.ozlabs.org Git - petitboot/blobdiff - discover/device-handler.c
discover: Reject ADD_URL actions without configured network
[petitboot] / discover / device-handler.c
index 191ec33e52a153f8323f95f10c7278756fa1bf9d..120f11f52aa819639ece6a1bffaa49d0772921ae 100644 (file)
@@ -5,6 +5,7 @@
 #include <string.h>
 #include <errno.h>
 #include <mntent.h>
+#include <locale.h>
 #include <sys/stat.h>
 #include <sys/wait.h>
 #include <sys/mount.h>
@@ -922,6 +923,12 @@ void device_handler_process_url(struct device_handler *handler,
        status->detail = talloc_asprintf(status,
                        _("Received config URL %s"), url);
 
+       if (!handler->network) {
+               status->message = talloc_asprintf(handler,
+                                       _("No network configured"));
+               goto msg;
+       }
+
        event = talloc(handler, struct event);
        event->type = EVENT_TYPE_USER;
        event->action = EVENT_ACTION_CONF;