summaryrefslogtreecommitdiffstats
path: root/perl/examples/create_disk.pl
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-07-03 14:36:45 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-07-07 11:26:41 +0100
commitfe315f634c7db0f30fc828421258e89f6dded346 (patch)
treeed73f9c5ddede02b7131c421e2fa8961fc6f1206 /perl/examples/create_disk.pl
parent7fc03e9a45bbf87298dd98e7eb7db649e0dba4ff (diff)
downloadlibguestfs-fe315f634c7db0f30fc828421258e89f6dded346.tar.gz
libguestfs-fe315f634c7db0f30fc828421258e89f6dded346.tar.xz
libguestfs-fe315f634c7db0f30fc828421258e89f6dded346.zip
examples: In create_disk example, don't call set_autosync.
This is now set by default in all supported versions of libguestfs. It's just confusing if the examples refer to it. (cherry picked from commit 917550a117904ec1a06b77a7870a147014d71adb)
Diffstat (limited to 'perl/examples/create_disk.pl')
-rwxr-xr-xperl/examples/create_disk.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/perl/examples/create_disk.pl b/perl/examples/create_disk.pl
index 5a81663f..49538a5f 100755
--- a/perl/examples/create_disk.pl
+++ b/perl/examples/create_disk.pl
@@ -17,10 +17,6 @@ close FILE or die "$output: $!";
# Set the trace flag so that we can see each libguestfs call.
$g->set_trace (1);
-# Set the autosync flag so that the disk will be synchronized
-# automatically when the libguestfs handle is closed.
-$g->set_autosync (1);
-
# Attach the disk image to libguestfs.
$g->add_drive_opts ($output, format => "raw", readonly => 0);
@@ -61,7 +57,4 @@ $g->mkdir ("/foo");
# the disk image.
$g->upload ("/etc/resolv.conf", "/foo/resolv.conf");
-# Because 'autosync' was set (above) we can just exit here
-# and the disk contents will be synchronized. You can also do
-# this manually by calling $g->umount_all and $g->sync.
exit 0