diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-06-29 15:18:17 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-06-29 15:19:10 +0100 |
commit | c6d6f5ae1b76ec9aa5c540906aeed73d25d13eb9 (patch) | |
tree | 3f090396c5b90e0829c3ab25f8c3d8275726a46e /python/guestfs-py.c | |
parent | 4dff42aa13dd726fb6b02843d0f4db4b4b330fe3 (diff) | |
download | libguestfs-c6d6f5ae1b76ec9aa5c540906aeed73d25d13eb9.tar.gz libguestfs-c6d6f5ae1b76ec9aa5c540906aeed73d25d13eb9.tar.xz libguestfs-c6d6f5ae1b76ec9aa5c540906aeed73d25d13eb9.zip |
Generated code for 'initrd-list'.
Diffstat (limited to 'python/guestfs-py.c')
-rw-r--r-- | python/guestfs-py.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/python/guestfs-py.c b/python/guestfs-py.c index ac1283be..d2682f9c 100644 --- a/python/guestfs-py.c +++ b/python/guestfs-py.c @@ -4877,6 +4877,31 @@ py_guestfs_du (PyObject *self, PyObject *args) return py_r; } +static PyObject * +py_guestfs_initrd_list (PyObject *self, PyObject *args) +{ + PyObject *py_g; + guestfs_h *g; + PyObject *py_r; + char **r; + const char *path; + + if (!PyArg_ParseTuple (args, (char *) "Os:guestfs_initrd_list", + &py_g, &path)) + return NULL; + g = get_handle (py_g); + + r = guestfs_initrd_list (g, path); + if (r == NULL) { + PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g)); + return NULL; + } + + py_r = put_string_list (r); + free_strings (r); + return py_r; +} + static PyMethodDef methods[] = { { (char *) "create", py_guestfs_create, METH_VARARGS, NULL }, { (char *) "close", py_guestfs_close, METH_VARARGS, NULL }, @@ -5059,6 +5084,7 @@ static PyMethodDef methods[] = { { (char *) "df", py_guestfs_df, METH_VARARGS, NULL }, { (char *) "df_h", py_guestfs_df_h, METH_VARARGS, NULL }, { (char *) "du", py_guestfs_du, METH_VARARGS, NULL }, + { (char *) "initrd_list", py_guestfs_initrd_list, METH_VARARGS, NULL }, { NULL, NULL, 0, NULL } }; |