|
|
022f11 |
From 154b705f32d7e179aea1af5ed367a3d33612f294 Mon Sep 17 00:00:00 2001
|
|
|
022f11 |
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
|
022f11 |
Date: Thu, 17 Oct 2013 15:12:19 +0100
|
|
|
022f11 |
Subject: [PATCH] Add man page for /etc/libguestfs-tools.conf (RHBZ#1019889).
|
|
|
022f11 |
|
|
|
022f11 |
Add a man page to document this configuration file. This is
|
|
|
022f11 |
required by some distros, eg. Debian and RHEL.
|
|
|
022f11 |
|
|
|
022f11 |
(cherry picked from commit 24a315507d1293a0ec097b57d15efb3dae784489)
|
|
|
022f11 |
---
|
|
|
022f11 |
.gitignore | 4 +++
|
|
|
022f11 |
fish/Makefile.am | 15 +++++++++
|
|
|
022f11 |
fish/guestfish.pod | 3 +-
|
|
|
022f11 |
fish/libguestfs-tools.conf | 16 +---------
|
|
|
022f11 |
fish/libguestfs-tools.conf.pod | 70 ++++++++++++++++++++++++++++++++++++++++++
|
|
|
022f11 |
fuse/guestmount.pod | 3 +-
|
|
|
022f11 |
po-docs/ja/Makefile.am | 12 +++++++-
|
|
|
022f11 |
po-docs/podfiles | 1 +
|
|
|
022f11 |
po-docs/uk/Makefile.am | 12 +++++++-
|
|
|
022f11 |
rescue/virt-rescue.pod | 3 +-
|
|
|
022f11 |
10 files changed, 119 insertions(+), 20 deletions(-)
|
|
|
022f11 |
create mode 100644 fish/libguestfs-tools.conf.pod
|
|
|
022f11 |
|
|
|
022f11 |
diff --git a/.gitignore b/.gitignore
|
|
|
022f11 |
index 6c2f580..1a94f1e 100644
|
|
|
022f11 |
--- a/.gitignore
|
|
|
022f11 |
+++ b/.gitignore
|
|
|
022f11 |
@@ -136,11 +136,13 @@ Makefile.in
|
|
|
022f11 |
/fish/guestfish-actions.pod
|
|
|
022f11 |
/fish/guestfish-commands.pod
|
|
|
022f11 |
/fish/guestfish-prepopts.pod
|
|
|
022f11 |
+/fish/libguestfs-tools.conf.5
|
|
|
022f11 |
/fish/prepopts.c
|
|
|
022f11 |
/fish/prepopts.h
|
|
|
022f11 |
/fish/rc_protocol.c
|
|
|
022f11 |
/fish/rc_protocol.h
|
|
|
022f11 |
/fish/stamp-guestfish.pod
|
|
|
022f11 |
+/fish/stamp-libguestfs-tools.conf.pod
|
|
|
022f11 |
/fish/stamp-virt-copy-in.pod
|
|
|
022f11 |
/fish/stamp-virt-copy-out.pod
|
|
|
022f11 |
/fish/stamp-virt-tar-in.pod
|
|
|
022f11 |
@@ -201,6 +203,7 @@ Makefile.in
|
|
|
022f11 |
/html/guestunmount.1.html
|
|
|
022f11 |
/html/libguestfs-make-fixed-appliance.1.html
|
|
|
022f11 |
/html/libguestfs-test-tool.1.html
|
|
|
022f11 |
+/html/libguestfs-tools.conf.5.html
|
|
|
022f11 |
/html/virt-alignment-scan.1.html
|
|
|
022f11 |
/html/virt-cat.1.html
|
|
|
022f11 |
/html/virt-copy-in.1.html
|
|
|
022f11 |
@@ -325,6 +328,7 @@ Makefile.in
|
|
|
022f11 |
/pick-guests.pl
|
|
|
022f11 |
/po-docs/*/*.1
|
|
|
022f11 |
/po-docs/*/*.3
|
|
|
022f11 |
+/po-docs/*/*.5
|
|
|
022f11 |
/po-docs/*/*.8
|
|
|
022f11 |
/po-docs/*/*.pl
|
|
|
022f11 |
/po-docs/po4a.conf
|
|
|
022f11 |
diff --git a/fish/Makefile.am b/fish/Makefile.am
|
|
|
022f11 |
index ceceb96..83a8458 100644
|
|
|
022f11 |
--- a/fish/Makefile.am
|
|
|
022f11 |
+++ b/fish/Makefile.am
|
|
|
022f11 |
@@ -19,6 +19,7 @@ include $(top_srcdir)/subdir-rules.mk
|
|
|
022f11 |
|
|
|
022f11 |
CLEANFILES = \
|
|
|
022f11 |
stamp-guestfish.pod \
|
|
|
022f11 |
+ stamp-libguestfs-tools.conf.pod \
|
|
|
022f11 |
stamp-virt-copy-in.pod \
|
|
|
022f11 |
stamp-virt-copy-out.pod \
|
|
|
022f11 |
stamp-virt-tar-in.pod \
|
|
|
022f11 |
@@ -49,6 +50,7 @@ EXTRA_DIST = \
|
|
|
022f11 |
rc_protocol.x \
|
|
|
022f11 |
guestfish.pod \
|
|
|
022f11 |
libguestfs-tools.conf \
|
|
|
022f11 |
+ libguestfs-tools.conf.pod \
|
|
|
022f11 |
virt-copy-in \
|
|
|
022f11 |
virt-copy-out \
|
|
|
022f11 |
virt-tar-in \
|
|
|
022f11 |
@@ -178,12 +180,14 @@ bin_SCRIPTS = virt-copy-in virt-copy-out virt-tar-in virt-tar-out
|
|
|
022f11 |
|
|
|
022f11 |
man_MANS = \
|
|
|
022f11 |
guestfish.1 \
|
|
|
022f11 |
+ libguestfs-tools.conf.5 \
|
|
|
022f11 |
virt-copy-in.1 \
|
|
|
022f11 |
virt-copy-out.1 \
|
|
|
022f11 |
virt-tar-in.1 \
|
|
|
022f11 |
virt-tar-out.1
|
|
|
022f11 |
noinst_DATA = \
|
|
|
022f11 |
$(top_builddir)/html/guestfish.1.html \
|
|
|
022f11 |
+ $(top_builddir)/html/libguestfs-tools.conf.5.html \
|
|
|
022f11 |
$(top_builddir)/html/virt-copy-in.1.html \
|
|
|
022f11 |
$(top_builddir)/html/virt-copy-out.1.html \
|
|
|
022f11 |
$(top_builddir)/html/virt-tar-in.1.html \
|
|
|
022f11 |
@@ -202,6 +206,17 @@ stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
|
|
|
022f11 |
$<
|
|
|
022f11 |
touch $@
|
|
|
022f11 |
|
|
|
022f11 |
+libguestfs-tools.conf.5 $(top_builddir)/html/libguestfs-tools.conf.5.html: stamp-libguestfs-tools.conf.pod
|
|
|
022f11 |
+
|
|
|
022f11 |
+stamp-libguestfs-tools.conf.pod: libguestfs-tools.conf.pod
|
|
|
022f11 |
+ $(PODWRAPPER) \
|
|
|
022f11 |
+ --section 5 \
|
|
|
022f11 |
+ --man libguestfs-tools.conf.5 \
|
|
|
022f11 |
+ --html $(top_builddir)/html/libguestfs-tools.conf.5.html \
|
|
|
022f11 |
+ --license GPLv2+ \
|
|
|
022f11 |
+ $<
|
|
|
022f11 |
+ touch $@
|
|
|
022f11 |
+
|
|
|
022f11 |
virt-copy-in.1 $(top_builddir)/html/virt-copy-in.1.html: stamp-virt-copy-in.pod
|
|
|
022f11 |
|
|
|
022f11 |
stamp-virt-copy-in.pod: virt-copy-in.pod
|
|
|
022f11 |
diff --git a/fish/guestfish.pod b/fish/guestfish.pod
|
|
|
022f11 |
index 2ecc058..c19fe6c 100644
|
|
|
022f11 |
--- a/fish/guestfish.pod
|
|
|
022f11 |
+++ b/fish/guestfish.pod
|
|
|
022f11 |
@@ -1495,7 +1495,7 @@ See L</LIBGUESTFS_CACHEDIR>, L</LIBGUESTFS_TMPDIR>.
|
|
|
022f11 |
This configuration file controls the default read-only or read-write
|
|
|
022f11 |
mode (I<--ro> or I<--rw>).
|
|
|
022f11 |
|
|
|
022f11 |
-See L</OPENING DISKS FOR READ AND WRITE>.
|
|
|
022f11 |
+See L<libguestfs-tools.conf(5)>.
|
|
|
022f11 |
|
|
|
022f11 |
=item $HOME/.guestfish
|
|
|
022f11 |
|
|
|
022f11 |
@@ -1567,6 +1567,7 @@ L<virt-tar(1)>,
|
|
|
022f11 |
L<virt-tar-in(1)>,
|
|
|
022f11 |
L<virt-tar-out(1)>,
|
|
|
022f11 |
L<virt-win-reg(1)>,
|
|
|
022f11 |
+L<libguestfs-tools.conf(5)>,
|
|
|
022f11 |
L<display(1)>,
|
|
|
022f11 |
L<hexedit(1)>,
|
|
|
022f11 |
L<supermin-helper(8)>.
|
|
|
022f11 |
diff --git a/fish/libguestfs-tools.conf b/fish/libguestfs-tools.conf
|
|
|
022f11 |
index 7e60468..898a8de 100644
|
|
|
022f11 |
--- a/fish/libguestfs-tools.conf
|
|
|
022f11 |
+++ b/fish/libguestfs-tools.conf
|
|
|
022f11 |
@@ -1,21 +1,7 @@
|
|
|
022f11 |
# /etc/libguestfs-tools.conf or .libguestfs-tools.rc
|
|
|
022f11 |
#
|
|
|
022f11 |
-# This configuration file changes the defaults for the following programs:
|
|
|
022f11 |
-# * guestfish
|
|
|
022f11 |
-# * guestmount
|
|
|
022f11 |
-# * virt-rescue
|
|
|
022f11 |
-# For more information on these programs, read the manual pages
|
|
|
022f11 |
-# (guestfish(1) etc).
|
|
|
022f11 |
+# See libguestfs-tools.conf(5) man page for documentation.
|
|
|
022f11 |
#
|
|
|
022f11 |
-# /etc/libguestfs-tools.conf is the global configuration file for all
|
|
|
022f11 |
-# of the above programs. Local users can override the global
|
|
|
022f11 |
-# configuration by copying this file into '.libguestfs-tools.rc' in
|
|
|
022f11 |
-# their home directory and modifying it accordingly.
|
|
|
022f11 |
-#
|
|
|
022f11 |
-# This file is parsed by the libconfig library. For more information
|
|
|
022f11 |
-# about the format, see
|
|
|
022f11 |
-# http://www.hyperrealm.com/libconfig/libconfig_manual.html
|
|
|
022f11 |
-
|
|
|
022f11 |
# Uncomment the following line to make guestfish, guestmount,
|
|
|
022f11 |
# virt-rescue be read-only by default (as if the --ro flag was given).
|
|
|
022f11 |
# If it is commented out then the default is read-write. Note that
|
|
|
022f11 |
diff --git a/fish/libguestfs-tools.conf.pod b/fish/libguestfs-tools.conf.pod
|
|
|
022f11 |
new file mode 100644
|
|
|
022f11 |
index 0000000..0c1817a
|
|
|
022f11 |
--- /dev/null
|
|
|
022f11 |
+++ b/fish/libguestfs-tools.conf.pod
|
|
|
022f11 |
@@ -0,0 +1,70 @@
|
|
|
022f11 |
+=encoding utf8
|
|
|
022f11 |
+
|
|
|
022f11 |
+=head1 NAME
|
|
|
022f11 |
+
|
|
|
022f11 |
+/etc/libguestfs-tools.conf - configuration file for guestfish, guestmount, virt-rescue
|
|
|
022f11 |
+
|
|
|
022f11 |
+=head1 SYNOPSIS
|
|
|
022f11 |
+
|
|
|
022f11 |
+ /etc/libguestfs-tools.conf
|
|
|
022f11 |
+
|
|
|
022f11 |
+ $HOME/.libguestfs-tools.rc
|
|
|
022f11 |
+
|
|
|
022f11 |
+=head1 DESCRIPTION
|
|
|
022f11 |
+
|
|
|
022f11 |
+C</etc/libguestfs-tools.conf> or C<$HOME/.libguestfs-tools.rc> changes
|
|
|
022f11 |
+the defaults for the following programs only:
|
|
|
022f11 |
+
|
|
|
022f11 |
+=over 4
|
|
|
022f11 |
+
|
|
|
022f11 |
+=item *
|
|
|
022f11 |
+
|
|
|
022f11 |
+L<guestfish(1)>
|
|
|
022f11 |
+
|
|
|
022f11 |
+=item *
|
|
|
022f11 |
+
|
|
|
022f11 |
+L<guestmount(1)>
|
|
|
022f11 |
+
|
|
|
022f11 |
+=item *
|
|
|
022f11 |
+
|
|
|
022f11 |
+L<virt-rescue(1)>
|
|
|
022f11 |
+
|
|
|
022f11 |
+=back
|
|
|
022f11 |
+
|
|
|
022f11 |
+There is currently only one setting which is controlled by this
|
|
|
022f11 |
+file. Adding (or uncommenting):
|
|
|
022f11 |
+
|
|
|
022f11 |
+ read_only = true;
|
|
|
022f11 |
+
|
|
|
022f11 |
+changes these programs so they act as if the I<--ro> flag was given on
|
|
|
022f11 |
+the command line. You can use this to make the programs safe against
|
|
|
022f11 |
+accidental modification of a live guest (users would have to
|
|
|
022f11 |
+explicitly add the I<--rw> flag to modify guests). This is not the
|
|
|
022f11 |
+default because it is not backwards compatible.
|
|
|
022f11 |
+See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>.
|
|
|
022f11 |
+
|
|
|
022f11 |
+Note that B<the semicolon is required>.
|
|
|
022f11 |
+
|
|
|
022f11 |
+C</etc/libguestfs-tools.conf> is the global configuration file for all
|
|
|
022f11 |
+of the above programs. Local users can override the global
|
|
|
022f11 |
+configuration by copying this file into C<.libguestfs-tools.rc> in
|
|
|
022f11 |
+their home directory and modifying it accordingly.
|
|
|
022f11 |
+
|
|
|
022f11 |
+This file is parsed by the libconfig library. For more information
|
|
|
022f11 |
+about the format, see:
|
|
|
022f11 |
+L<http://www.hyperrealm.com/libconfig/libconfig_manual.html>
|
|
|
022f11 |
+
|
|
|
022f11 |
+=head1 SEE ALSO
|
|
|
022f11 |
+
|
|
|
022f11 |
+L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>,
|
|
|
022f11 |
+L<guestmount(1)>,
|
|
|
022f11 |
+L<virt-rescue(1)>,
|
|
|
022f11 |
+L<http://libguestfs.org/>.
|
|
|
022f11 |
+
|
|
|
022f11 |
+=head1 AUTHORS
|
|
|
022f11 |
+
|
|
|
022f11 |
+Richard W.M. Jones (C<rjones at redhat dot com>)
|
|
|
022f11 |
+
|
|
|
022f11 |
+=head1 COPYRIGHT
|
|
|
022f11 |
+
|
|
|
022f11 |
+Copyright (C) 2011-2013 Red Hat Inc.
|
|
|
022f11 |
diff --git a/fuse/guestmount.pod b/fuse/guestmount.pod
|
|
|
022f11 |
index b9e93de..42e8579 100644
|
|
|
022f11 |
--- a/fuse/guestmount.pod
|
|
|
022f11 |
+++ b/fuse/guestmount.pod
|
|
|
022f11 |
@@ -394,7 +394,7 @@ This also stops the daemon from forking into the background
|
|
|
022f11 |
This configuration file controls the default read-only or read-write
|
|
|
022f11 |
mode (I<--ro> or I<--rw>).
|
|
|
022f11 |
|
|
|
022f11 |
-See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>.
|
|
|
022f11 |
+See L<libguestfs-tools.conf(5)>.
|
|
|
022f11 |
|
|
|
022f11 |
=back
|
|
|
022f11 |
|
|
|
022f11 |
@@ -412,6 +412,7 @@ L<virt-inspector(1)>,
|
|
|
022f11 |
L<virt-cat(1)>,
|
|
|
022f11 |
L<virt-edit(1)>,
|
|
|
022f11 |
L<virt-tar(1)>,
|
|
|
022f11 |
+L<libguestfs-tools.conf(5)>,
|
|
|
022f11 |
L<guestfs(3)/MOUNT LOCAL>,
|
|
|
022f11 |
L<http://libguestfs.org/>,
|
|
|
022f11 |
L<http://fuse.sf.net/>.
|
|
|
022f11 |
diff --git a/po-docs/ja/Makefile.am b/po-docs/ja/Makefile.am
|
|
|
022f11 |
index 0b1b10f..217dcd4 100644
|
|
|
022f11 |
--- a/po-docs/ja/Makefile.am
|
|
|
022f11 |
+++ b/po-docs/ja/Makefile.am
|
|
|
022f11 |
@@ -23,7 +23,7 @@ include $(top_srcdir)/subdir-rules.mk
|
|
|
022f11 |
|
|
|
022f11 |
LINGUA = $(shell basename -- `pwd`)
|
|
|
022f11 |
|
|
|
022f11 |
-CLEANFILES = *.1 *.3 stamp-update-po
|
|
|
022f11 |
+CLEANFILES = *.1 *.3 *.5 stamp-update-po
|
|
|
022f11 |
|
|
|
022f11 |
MANPAGES = \
|
|
|
022f11 |
guestfish.1 \
|
|
|
022f11 |
@@ -46,6 +46,7 @@ MANPAGES = \
|
|
|
022f11 |
guestunmount.1 \
|
|
|
022f11 |
libguestfs-make-fixed-appliance.1 \
|
|
|
022f11 |
libguestfs-test-tool.1 \
|
|
|
022f11 |
+ libguestfs-tools.conf.5 \
|
|
|
022f11 |
virt-alignment-scan.1 \
|
|
|
022f11 |
virt-cat.1 \
|
|
|
022f11 |
virt-copy-in.1 \
|
|
|
022f11 |
@@ -122,6 +123,13 @@ virt-sysprep.1: virt-sysprep.pod sysprep-extra-options.pod sysprep-operations.po
|
|
|
022f11 |
--section 3 \
|
|
|
022f11 |
$<
|
|
|
022f11 |
|
|
|
022f11 |
+%.5: %.pod
|
|
|
022f11 |
+ $(PODWRAPPER) \
|
|
|
022f11 |
+ --no-strict-checks \
|
|
|
022f11 |
+ --man $@ \
|
|
|
022f11 |
+ --section 5 \
|
|
|
022f11 |
+ $<
|
|
|
022f11 |
+
|
|
|
022f11 |
%.8: %.pod
|
|
|
022f11 |
$(PODWRAPPER) \
|
|
|
022f11 |
--no-strict-checks \
|
|
|
022f11 |
@@ -149,3 +157,5 @@ install-data-hook:
|
|
|
022f11 |
$(INSTALL) -m 0644 *.1 $(DESTDIR)$(mandir)/$(LINGUA)/man1
|
|
|
022f11 |
$(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man3
|
|
|
022f11 |
$(INSTALL) -m 0644 *.3 $(DESTDIR)$(mandir)/$(LINGUA)/man3
|
|
|
022f11 |
+ $(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man5
|
|
|
022f11 |
+ $(INSTALL) -m 0644 *.5 $(DESTDIR)$(mandir)/$(LINGUA)/man5
|
|
|
022f11 |
diff --git a/po-docs/podfiles b/po-docs/podfiles
|
|
|
022f11 |
index 3347554..629a6b0 100644
|
|
|
022f11 |
--- a/po-docs/podfiles
|
|
|
022f11 |
+++ b/po-docs/podfiles
|
|
|
022f11 |
@@ -16,6 +16,7 @@
|
|
|
022f11 |
../fish/guestfish-commands.pod
|
|
|
022f11 |
../fish/guestfish-prepopts.pod
|
|
|
022f11 |
../fish/guestfish.pod
|
|
|
022f11 |
+../fish/libguestfs-tools.conf.pod
|
|
|
022f11 |
../fish/virt-copy-in.pod
|
|
|
022f11 |
../fish/virt-copy-out.pod
|
|
|
022f11 |
../fish/virt-tar-in.pod
|
|
|
022f11 |
diff --git a/po-docs/uk/Makefile.am b/po-docs/uk/Makefile.am
|
|
|
022f11 |
index 0b1b10f..217dcd4 100644
|
|
|
022f11 |
--- a/po-docs/uk/Makefile.am
|
|
|
022f11 |
+++ b/po-docs/uk/Makefile.am
|
|
|
022f11 |
@@ -23,7 +23,7 @@ include $(top_srcdir)/subdir-rules.mk
|
|
|
022f11 |
|
|
|
022f11 |
LINGUA = $(shell basename -- `pwd`)
|
|
|
022f11 |
|
|
|
022f11 |
-CLEANFILES = *.1 *.3 stamp-update-po
|
|
|
022f11 |
+CLEANFILES = *.1 *.3 *.5 stamp-update-po
|
|
|
022f11 |
|
|
|
022f11 |
MANPAGES = \
|
|
|
022f11 |
guestfish.1 \
|
|
|
022f11 |
@@ -46,6 +46,7 @@ MANPAGES = \
|
|
|
022f11 |
guestunmount.1 \
|
|
|
022f11 |
libguestfs-make-fixed-appliance.1 \
|
|
|
022f11 |
libguestfs-test-tool.1 \
|
|
|
022f11 |
+ libguestfs-tools.conf.5 \
|
|
|
022f11 |
virt-alignment-scan.1 \
|
|
|
022f11 |
virt-cat.1 \
|
|
|
022f11 |
virt-copy-in.1 \
|
|
|
022f11 |
@@ -122,6 +123,13 @@ virt-sysprep.1: virt-sysprep.pod sysprep-extra-options.pod sysprep-operations.po
|
|
|
022f11 |
--section 3 \
|
|
|
022f11 |
$<
|
|
|
022f11 |
|
|
|
022f11 |
+%.5: %.pod
|
|
|
022f11 |
+ $(PODWRAPPER) \
|
|
|
022f11 |
+ --no-strict-checks \
|
|
|
022f11 |
+ --man $@ \
|
|
|
022f11 |
+ --section 5 \
|
|
|
022f11 |
+ $<
|
|
|
022f11 |
+
|
|
|
022f11 |
%.8: %.pod
|
|
|
022f11 |
$(PODWRAPPER) \
|
|
|
022f11 |
--no-strict-checks \
|
|
|
022f11 |
@@ -149,3 +157,5 @@ install-data-hook:
|
|
|
022f11 |
$(INSTALL) -m 0644 *.1 $(DESTDIR)$(mandir)/$(LINGUA)/man1
|
|
|
022f11 |
$(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man3
|
|
|
022f11 |
$(INSTALL) -m 0644 *.3 $(DESTDIR)$(mandir)/$(LINGUA)/man3
|
|
|
022f11 |
+ $(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man5
|
|
|
022f11 |
+ $(INSTALL) -m 0644 *.5 $(DESTDIR)$(mandir)/$(LINGUA)/man5
|
|
|
022f11 |
diff --git a/rescue/virt-rescue.pod b/rescue/virt-rescue.pod
|
|
|
022f11 |
index 9484ad5..7b77f97 100755
|
|
|
022f11 |
--- a/rescue/virt-rescue.pod
|
|
|
022f11 |
+++ b/rescue/virt-rescue.pod
|
|
|
022f11 |
@@ -410,7 +410,7 @@ manual page L<sh(1)> for details.
|
|
|
022f11 |
This configuration file controls the default read-only or read-write
|
|
|
022f11 |
mode (I<--ro> or I<--rw>).
|
|
|
022f11 |
|
|
|
022f11 |
-See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>.
|
|
|
022f11 |
+See L<libguestfs-tools.conf(5)>.
|
|
|
022f11 |
|
|
|
022f11 |
=back
|
|
|
022f11 |
|
|
|
022f11 |
@@ -421,6 +421,7 @@ L<guestfish(1)>,
|
|
|
022f11 |
L<virt-cat(1)>,
|
|
|
022f11 |
L<virt-edit(1)>,
|
|
|
022f11 |
L<virt-filesystems(1)>,
|
|
|
022f11 |
+L<libguestfs-tools.conf(5)>,
|
|
|
022f11 |
L<http://libguestfs.org/>.
|
|
|
022f11 |
|
|
|
022f11 |
=head1 AUTHOR
|
|
|
022f11 |
--
|
|
|
022f11 |
1.8.3.1
|
|
|
022f11 |
|