summaryrefslogtreecommitdiffstats
path: root/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'ruby')
-rw-r--r--ruby/examples/create_disk.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/ruby/examples/create_disk.rb b/ruby/examples/create_disk.rb
index 16871cb6..4e42cf6a 100644
--- a/ruby/examples/create_disk.rb
+++ b/ruby/examples/create_disk.rb
@@ -14,10 +14,6 @@ File.open(output, "w") {
# 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")
@@ -58,7 +54,4 @@ g.mkdir("/foo")
# the disk image.
g.upload("/etc/resolv.conf", "/foo/resolv.conf")
-# Because 'autosync' was set (above) we can just close the handle
-# and the disk contents will be synchronized. You can also do
-# this manually by calling g#umount_all and g#sync.
g.close()