Displaying 1 result from an estimated 1 matches for "19eef99".
2009 Aug 18
1
[PATCH] guestfs_modprobe: explicitly load a kernel module in the appliance
...+ NULL
+ };
+
+ argv[1] = module;
+
+ char *out, *err;
+ int r = commandv (&out, &err, (char **) argv);
+
+ if (r == -1) {
+ reply_with_error ("%s", err);
+ }
+
+ free (out);
+ free (err);
+
+ return r;
+}
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 33bf6e6..19eef99 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -30,6 +30,7 @@ daemon/ls.c
daemon/lvm.c
daemon/mkfs.c
daemon/mknod.c
+daemon/modprobe.c
daemon/mount.c
daemon/names.c
daemon/ntfs.c
diff --git a/src/MAX_PROC_NR b/src/MAX_PROC_NR
index 2455a46..205a12b 100644
--- a/src/MAX_PROC_NR
+++ b/src/...