X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Fvirt.c;h=083ea65631131a8918487961632d935a9fa081e4;hb=3e9f4af1e1126b1e1f7a93379172dd095dd1b908;hp=b14cee2b588fc8838027391d1ab30d3014260e67;hpb=a20e5c00c35490fa29668630113a01240a69b701;p=libguestfs.git diff --git a/fish/virt.c b/fish/virt.c index b14cee2..083ea65 100644 --- a/fish/virt.c +++ b/fish/virt.c @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -48,5 +48,11 @@ add_libvirt_drives (const char *guest) optargs.live = 1; } + optargs.bitmask |= GUESTFS_ADD_DOMAIN_ALLOWUUID_BITMASK; + optargs.allowuuid = 1; + + optargs.bitmask |= GUESTFS_ADD_DOMAIN_READONLYDISK_BITMASK; + optargs.readonlydisk = "read"; + return guestfs_add_domain_argv (g, guest, &optargs); }