inspect: Refuse to download software hive if it is huge.
[libguestfs.git] / daemon / modprobe.c
index 7e3d1b7..0d7318c 100644 (file)
 
 #include "daemon.h"
 #include "actions.h"
+#include "optgroups.h"
+
+int
+optgroup_linuxmodules_available (void)
+{
+  return prog_exists ("modprobe");
+}
 
 int
 do_modprobe (const char *module)
 {
   char *err;
-  int r = command (NULL, &err, "/sbin/modprobe", module, NULL);
+  int r = command (NULL, &err, "modprobe", module, NULL);
 
   if (r == -1) {
     reply_with_error ("%s", err);