Displaying 6 results from an estimated 6 matches for "repoconfdir".
2014 Mar 02
2
Re: [PATCH 3/8] builder: add functions to read XDG_CONFIG_DIRS and XDG_CONFIG_PATH
On Tue, Feb 25, 2014 at 05:29:08PM +0100, Pino Toscano wrote:
> +let xdg_config_dirs ~prog =
> + let dirs =
> + try Sys.getenv "XDG_CONFIG_DIRS"
> + with Not_found -> "/etc/xdg" in
This seems to put the virt-builder config files into
/etc/xdg/virt-builder which is kind of annoying. Can we move them to
a regular default location (/etc/virt-builder)?
I
2015 Sep 29
4
[PATCH v2 1/2] builder: add opensuse images sources
...100644 builder/opensuse.conf.in
create mode 100644 builder/opensuse.gpg
diff --git a/builder/Makefile.am b/builder/Makefile.am
index 4bed54c..e8f8dfb 100644
--- a/builder/Makefile.am
+++ b/builder/Makefile.am
@@ -315,7 +315,8 @@ DISTCLEANFILES = .depend
# virt-builder's default repository
repoconfdir = $(sysconfdir)/xdg/virt-builder/repos.d
-repoconf_DATA = libguestfs.conf libguestfs.gpg
+repoconf_DATA = libguestfs.conf libguestfs.gpg \
+ opensuse.conf opensuse.gpg
install-exec-hook:
$(LN_S) xdg/virt-builder $(DESTDIR)$(sysconfdir)/virt-builder
diff --git a/builder/opensuse.conf.in b/bu...
2015 Sep 08
5
[PATCH 0/2] virt-builder OpenSUSE images
Hi guys,
Here are two patches to get opensuse images in virt-builder.
Cédric Bosdonnat (2):
Allow curl to follow redirects.
builder: add opensuse images sources
builder/Makefile.am | 3 ++-
builder/downloader.ml | 4 ++--
builder/opensuse.conf.in | 3 +++
builder/opensuse.gpg | 21 +++++++++++++++++++++
configure.ac | 1 +
5 files changed, 29 insertions(+), 3
2015 Sep 08
0
[PATCH 2/2] builder: add opensuse images sources
...100644 builder/opensuse.conf.in
create mode 100644 builder/opensuse.gpg
diff --git a/builder/Makefile.am b/builder/Makefile.am
index f48efb0..33acb79 100644
--- a/builder/Makefile.am
+++ b/builder/Makefile.am
@@ -269,7 +269,8 @@ DISTCLEANFILES = .depend
# virt-builder's default repository
repoconfdir = $(sysconfdir)/xdg/virt-builder/repos.d
-repoconf_DATA = libguestfs.conf libguestfs.gpg
+repoconf_DATA = libguestfs.conf libguestfs.gpg \
+ opensuse.conf opensuse.gpg
install-exec-hook:
$(LN_S) xdg/virt-builder $(DESTDIR)$(sysconfdir)/virt-builder
diff --git a/builder/opensuse.conf.in b/bu...
2015 Sep 29
0
Re: [PATCH v2 1/2] builder: add opensuse images sources
...100644 builder/opensuse.gpg
>
> diff --git a/builder/Makefile.am b/builder/Makefile.am
> index 4bed54c..e8f8dfb 100644
> --- a/builder/Makefile.am
> +++ b/builder/Makefile.am
> @@ -315,7 +315,8 @@ DISTCLEANFILES = .depend
> # virt-builder's default repository
>
> repoconfdir = $(sysconfdir)/xdg/virt-builder/repos.d
> -repoconf_DATA = libguestfs.conf libguestfs.gpg
> +repoconf_DATA = libguestfs.conf libguestfs.gpg \
> + opensuse.conf opensuse.gpg
Wondering if you need to add these files to EXTRA_DIST? Some automake
rules do this implicitly, not sure if *_D...
2014 Feb 25
12
[PATCH 0/8] virt-builder: use .conf files for configuration
Hi,
attached there is a serie of patches that completes the work on making
virt-builder use .conf files, shipped in XDG directories, to configure
all the available sources of indexes used.
This also removes the hardcoded default location, replaced now with a
configuration file (which may be not used at all).
Thanks,
Pino Toscano (8):
builder: allow "no key" as key in Sigchecker