mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
This commit models libvirt authentication events through the API, adding one new event (GUESTFS_EVENT_LIBVIRT_AUTH) and several new APIs: guestfs_set_libvirt_supported_credentials guestfs_get_libvirt_requested_credentials guestfs_get_libvirt_requested_credential_prompt guestfs_get_libvirt_requested_credential_challenge guestfs_get_libvirt_requested_credential_defresult guestfs_set_libvirt_requested_credential See the documentation and example which shows how to use the new API. This commit also changes existing calls to virConnectOpen* within the library so that the new API is used. Also included is an example (but not a test, because it's hard to see how to automatically test the libvirt API).
183 lines
5.0 KiB
Makefile
183 lines
5.0 KiB
Makefile
# libguestfs C examples
|
|
# Copyright (C) 2010-2012 Red Hat Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
EXTRA_DIST = \
|
|
LICENSE \
|
|
guestfs-examples.pod \
|
|
guestfs-faq.pod \
|
|
guestfs-performance.pod \
|
|
guestfs-recipes.pod \
|
|
guestfs-testing.pod
|
|
|
|
CLEANFILES = \
|
|
stamp-guestfs-examples.pod \
|
|
stamp-guestfs-faq.pod \
|
|
stamp-guestfs-performance.pod \
|
|
stamp-guestfs-recipes.pod \
|
|
stamp-guestfs-testing.pod
|
|
|
|
noinst_PROGRAMS = create_disk display_icon inspect_vm
|
|
if HAVE_LIBVIRT
|
|
noinst_PROGRAMS += copy_over libvirt_auth
|
|
endif
|
|
if HAVE_HIVEX
|
|
noinst_PROGRAMS += virt-dhcp-address
|
|
endif
|
|
if HAVE_FUSE
|
|
noinst_PROGRAMS += mount_local
|
|
endif
|
|
|
|
if HAVE_LIBVIRT
|
|
copy_over_SOURCES = copy_over.c
|
|
copy_over_CFLAGS = \
|
|
-DGUESTFS_WARN_DEPRECATED=1 \
|
|
-I$(top_srcdir)/src -I$(top_builddir)/src \
|
|
$(LIBVIRT_CFLAGS) \
|
|
-pthread \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
copy_over_LDADD = \
|
|
$(top_builddir)/src/libguestfs.la \
|
|
$(LIBVIRT_LIBS)
|
|
|
|
libvirt_auth_SOURCES = libvirt_auth.c
|
|
libvirt_auth_CFLAGS = \
|
|
-DGUESTFS_WARN_DEPRECATED=1 \
|
|
-I$(top_srcdir)/src -I$(top_builddir)/src \
|
|
$(LIBVIRT_CFLAGS) \
|
|
-pthread \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
libvirt_auth_LDADD = \
|
|
$(top_builddir)/src/libguestfs.la \
|
|
$(LIBVIRT_LIBS)
|
|
endif
|
|
|
|
create_disk_SOURCES = create_disk.c
|
|
create_disk_CFLAGS = \
|
|
-DGUESTFS_WARN_DEPRECATED=1 \
|
|
-I$(top_srcdir)/src -I$(top_builddir)/src \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
create_disk_LDADD = \
|
|
$(top_builddir)/src/libguestfs.la
|
|
|
|
display_icon_SOURCES = display_icon.c
|
|
display_icon_CFLAGS = \
|
|
-DGUESTFS_WARN_DEPRECATED=1 \
|
|
-I$(top_srcdir)/src -I$(top_builddir)/src \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
display_icon_LDADD = \
|
|
$(top_builddir)/src/libguestfs.la
|
|
|
|
inspect_vm_SOURCES = inspect_vm.c
|
|
inspect_vm_CFLAGS = \
|
|
-DGUESTFS_WARN_DEPRECATED=1 \
|
|
-I$(top_srcdir)/src -I$(top_builddir)/src \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
inspect_vm_LDADD = \
|
|
$(top_builddir)/src/libguestfs.la
|
|
|
|
if HAVE_FUSE
|
|
mount_local_SOURCES = mount_local.c
|
|
mount_local_CFLAGS = \
|
|
-DGUESTFS_WARN_DEPRECATED=1 \
|
|
-I$(top_srcdir)/src -I$(top_builddir)/src \
|
|
$(FUSE_CFLAGS) \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
mount_local_LDADD = \
|
|
$(FUSE_LIBS) \
|
|
$(top_builddir)/src/libguestfs.la
|
|
endif
|
|
|
|
if HAVE_HIVEX
|
|
virt_dhcp_address_SOURCES = virt-dhcp-address.c
|
|
virt_dhcp_address_CFLAGS = \
|
|
-DGUESTFS_WARN_DEPRECATED=1 \
|
|
-I$(top_srcdir)/src -I$(top_builddir)/src \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
virt_dhcp_address_LDADD = \
|
|
$(top_builddir)/src/libguestfs.la
|
|
endif
|
|
|
|
man_MANS = \
|
|
guestfs-examples.3 \
|
|
guestfs-faq.1 \
|
|
guestfs-performance.1 \
|
|
guestfs-recipes.1 \
|
|
guestfs-testing.1
|
|
noinst_DATA = \
|
|
$(top_builddir)/html/guestfs-examples.3.html \
|
|
$(top_builddir)/html/guestfs-faq.1.html \
|
|
$(top_builddir)/html/guestfs-performance.1.html \
|
|
$(top_builddir)/html/guestfs-recipes.1.html \
|
|
$(top_builddir)/html/guestfs-testing.1.html
|
|
|
|
guestfs-examples.3 $(top_builddir)/html/guestfs-examples.3.html: stamp-guestfs-examples.pod
|
|
|
|
stamp-guestfs-examples.pod: guestfs-examples.pod create_disk.c inspect_vm.c
|
|
$(PODWRAPPER) \
|
|
--section 3 \
|
|
--man guestfs-examples.3 \
|
|
--html $(top_builddir)/html/guestfs-examples.3.html \
|
|
--verbatim $(srcdir)/create_disk.c:@EXAMPLE1@ \
|
|
--verbatim $(srcdir)/inspect_vm.c:@EXAMPLE2@ \
|
|
--license examples \
|
|
$<
|
|
touch $@
|
|
|
|
guestfs-faq.1 $(top_builddir)/html/guestfs-faq.1.html: stamp-guestfs-faq.pod
|
|
|
|
stamp-guestfs-faq.pod: guestfs-faq.pod
|
|
$(PODWRAPPER) \
|
|
--section 1 \
|
|
--man guestfs-faq.1 \
|
|
--html $(top_builddir)/html/guestfs-faq.1.html \
|
|
--license LGPLv2+ \
|
|
$<
|
|
touch $@
|
|
|
|
guestfs-performance.1 $(top_builddir)/html/guestfs-performance.1.html: stamp-guestfs-performance.pod
|
|
|
|
stamp-guestfs-performance.pod: guestfs-performance.pod
|
|
$(PODWRAPPER) \
|
|
--section 1 \
|
|
--man guestfs-performance.1 \
|
|
--html $(top_builddir)/html/guestfs-performance.1.html \
|
|
--license LGPLv2+ \
|
|
$<
|
|
touch $@
|
|
|
|
guestfs-recipes.1 $(top_builddir)/html/guestfs-recipes.1.html: stamp-guestfs-recipes.pod
|
|
|
|
stamp-guestfs-recipes.pod: guestfs-recipes.pod
|
|
$(PODWRAPPER) \
|
|
--section 1 \
|
|
--man guestfs-recipes.1 \
|
|
--html $(top_builddir)/html/guestfs-recipes.1.html \
|
|
--license examples \
|
|
$<
|
|
touch $@
|
|
|
|
guestfs-testing.1 $(top_builddir)/html/guestfs-testing.1.html: stamp-guestfs-testing.pod
|
|
|
|
stamp-guestfs-testing.pod: guestfs-testing.pod
|
|
$(PODWRAPPER) \
|
|
--section 1 \
|
|
--man guestfs-testing.1 \
|
|
--html $(top_builddir)/html/guestfs-testing.1.html \
|
|
--license LGPLv2+ \
|
|
$<
|
|
touch $@
|