search for: f276e4c

Displaying 2 results from an estimated 2 matches for "f276e4c".

Did you mean: f276e37
2014 Jan 27
0
[PATCH INCOMPLETE] Rewrite virt-make-fs in C (originally Perl).
...+ return -1; + guestfs_close (g); + + /* Output was created OK, so save it from being deleted by + * CLEANUP_UNLINK_FREE. + */ + free (output); + output = NULL; + + return 0; +} diff --git a/make-fs/test-virt-make-fs.sh b/make-fs/test-virt-make-fs.sh new file mode 100755 index 0000000..f276e4c --- /dev/null +++ b/make-fs/test-virt-make-fs.sh @@ -0,0 +1,96 @@ +#!/bin/bash - +# libguestfs +# Copyright (C) 2010-2014 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Softw...
2014 Jan 27
2
[PATCH INCOMPLETE] Rewrite virt-make-fs in C (originally Perl).
I thought it would be easy to rewrite virt-make-fs in C. Two days later ... The Perl program uses a lot of external commands, which makes it pretty tedious to implement in C. Rich.