Displaying 5 results from an estimated 5 matches for "17fe612".
Did you mean:
17.612
2014 Nov 04
0
[PATCH 3/9] build: check for libintl, and use it
...LOCALEBASEDIR=\""$(datadir)/locale"\"
@@ -266,6 +267,7 @@ test_utils_CFLAGS = \
test_utils_LDADD = \
libguestfs_la-guid.lo \
libutils.la \
+ $(LTLIBINTL) \
$(top_builddir)/gnulib/lib/libgnu.la
check-valgrind:
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
index 17fe612..58c63bb 100644
--- a/sysprep/Makefile.am
+++ b/sysprep/Makefile.am
@@ -136,7 +136,7 @@ OCAMLCFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) $(OCAMLPACKAGES)
OCAMLOPTFLAGS = $(OCAMLCFLAGS)
OCAMLCLIBS = \
- $(LIBXML2_LIBS) -lncurses -lcrypt \
+ $(LIBXML2_LIBS) $(LIBINTL) -lncurses -lcrypt \
-L../...
2014 Nov 04
2
Re: [PATCH 3/9] build: check for libintl, and use it
...\"
> @@ -266,6 +267,7 @@ test_utils_CFLAGS = \
> test_utils_LDADD = \
> libguestfs_la-guid.lo \
> libutils.la \
> + $(LTLIBINTL) \
> $(top_builddir)/gnulib/lib/libgnu.la
>
> check-valgrind:
> diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
> index 17fe612..58c63bb 100644
> --- a/sysprep/Makefile.am
> +++ b/sysprep/Makefile.am
> @@ -136,7 +136,7 @@ OCAMLCFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) $(OCAMLPACKAGES)
> OCAMLOPTFLAGS = $(OCAMLCFLAGS)
>
> OCAMLCLIBS = \
> - $(LIBXML2_LIBS) -lncurses -lcrypt \
> + $(LIBXML2_LIBS...
2014 Nov 03
0
[PATCH] customize: Add --ssh-inject option for injecting SSH keys.
...o/POTFILES-ml
+++ b/po/POTFILES-ml
@@ -25,6 +25,7 @@ customize/hostname.ml
customize/password.ml
customize/perl_edit.ml
customize/random_seed.ml
+customize/ssh_key.ml
customize/timezone.ml
customize/urandom.ml
mllib/JSON.ml
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
index 6553c9c..17fe612 100644
--- a/sysprep/Makefile.am
+++ b/sysprep/Makefile.am
@@ -102,6 +102,7 @@ deps = \
$(top_builddir)/customize/firstboot.cmx \
$(top_builddir)/customize/perl_edit-c.o \
$(top_builddir)/customize/perl_edit.cmx \
+ $(top_builddir)/customize/ssh_key.cmx \
$(top_builddir)/customize/customize...
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi,
continuing what started a couple of weeks ago [1], the attached patch
series continues the work in making it easier to build and run
libguestfs (in fixed appliance mode) on OSes different than Linux.
The provided changes should cause no functional changes on Linux.
[1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html
Thanks,
--
Pino
Pino Toscano (9):
build: check
2014 Nov 02
3
[PATCH] customize: Add --ssh-inject option for injecting SSH keys.
This adds a customize option:
virt-customize --ssh-inject USER[=KEY]
virt-builder --ssh-inject USER[=KEY]
virt-sysprep --ssh-inject USER[=KEY]
In each case this either injects the current (host) user's ssh pubkey
into the guest user USER (adding it to ~USER/.ssh/authorized_keys in
the guest), or you can specify a particular key.
For example:
virt-builder fedora-20 --ssh-inject root