X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=guestfish-actions.pod;fp=guestfish-actions.pod;h=0000000000000000000000000000000000000000;hp=e635e548cdb420a22678a80bda5b396836db6ff5;hb=b3cb0b04eb2d38ba32c160a83d8e3894b376907b;hpb=da85ed425dc828ef4b8817f64d448101a88507b5 diff --git a/guestfish-actions.pod b/guestfish-actions.pod deleted file mode 100644 index e635e54..0000000 --- a/guestfish-actions.pod +++ /dev/null @@ -1,1850 +0,0 @@ -=head2 add-cdrom | cdrom - - add-cdrom filename - -This function adds a virtual CD-ROM disk image to the guest. - -This is equivalent to the qemu parameter C<-cdrom filename>. - -Note that this call checks for the existence of C. This -stops you from specifying other types of drive which are supported -by qemu such as C and C URLs. To specify those, use -the general C call instead. - -=head2 add-drive | add - - add-drive filename - -This function adds a virtual machine disk image C to the -guest. The first time you call this function, the disk appears as IDE -disk 0 (C) in the guest, the second time as C, and -so on. - -You don't necessarily need to be root when using libguestfs. However -you obviously do need sufficient permissions to access the filename -for whatever operations you want to perform (ie. read access if you -just want to read the image or write access if you want to modify the -image). - -This is equivalent to the qemu parameter -C<-drive file=filename,cache=off,if=virtio>. - -Note that this call checks for the existence of C. This -stops you from specifying other types of drive which are supported -by qemu such as C and C URLs. To specify those, use -the general C call instead. - -=head2 add-drive-ro | add-ro - - add-drive-ro filename - -This adds a drive in snapshot mode, making it effectively -read-only. - -Note that writes to the device are allowed, and will be seen for -the duration of the guestfs handle, but they are written -to a temporary file which is discarded as soon as the guestfs -handle is closed. We don't currently have any method to enable -changes to be committed, although qemu can support this. - -This is equivalent to the qemu parameter -C<-drive file=filename,snapshot=on,if=virtio>. - -Note that this call checks for the existence of C. This -stops you from specifying other types of drive which are supported -by qemu such as C and C URLs. To specify those, use -the general C call instead. - -=head2 aug-close - - aug-close - -Close the current Augeas handle and free up any resources -used by it. After calling this, you have to call -C again before you can use any other -Augeas functions. - -=head2 aug-defnode - - aug-defnode name expr val - -Defines a variable C whose value is the result of -evaluating C. - -If C evaluates to an empty nodeset, a node is created, -equivalent to calling C C, C. -C will be the nodeset containing that single node. - -On success this returns a pair containing the -number of nodes in the nodeset, and a boolean flag -if a node was created. - -=head2 aug-defvar - - aug-defvar name expr - -Defines an Augeas variable C whose value is the result -of evaluating C. If C is NULL, then C is -undefined. - -On success this returns the number of nodes in C, or -C<0> if C evaluates to something which is not a nodeset. - -=head2 aug-get - - aug-get path - -Look up the value associated with C. If C -matches exactly one node, the C is returned. - -=head2 aug-init - - aug-init root flags - -Create a new Augeas handle for editing configuration files. -If there was any previous Augeas handle associated with this -guestfs session, then it is closed. - -You must call this before using any other C -commands. - -C is the filesystem root. C must not be NULL, -use C instead. - -The flags are the same as the flags defined in -Eaugeas.hE, the logical I of the following -integers: - -=over 4 - -=item C = 1 - -Keep the original file with a C<.augsave> extension. - -=item C = 2 - -Save changes into a file with extension C<.augnew>, and -do not overwrite original. Overrides C. - -=item C = 4 - -Typecheck lenses (can be expensive). - -=item C = 8 - -Do not use standard load path for modules. - -=item C = 16 - -Make save a no-op, just record what would have been changed. - -=item C = 32 - -Do not load the tree in C. - -=back - -To close the handle, you can call C. - -To find out more about Augeas, see L. - -=head2 aug-insert - - aug-insert path label true|false - -Create a new sibling C