Displaying 7 results from an estimated 7 matches for "bce0aca".
2015 Aug 04
1
[PATCH] customize: Make dnf upgrade to the latest versions of packages.
...you also supply the '--best' flag.
This also changes update -> upgrade, since apparently 'dnf update'
is deprecated.
---
customize/customize_run.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index bce0aca..828c711 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -123,7 +123,7 @@ exec >>%s 2>&1
apt-get $apt_opts upgrade
"
| "dnf" ->
- sprintf "dnf -y update"
+ sprintf "dnf -y --best upgrade"...
2015 Jul 28
4
[PATCH 0/2] Misc fixes
Here are two patches: one fixes the gpg-agent causing unmount to fail
after running dnf to install packages. The other ones fixes dhcpcd call
in the init program to provide it an interface name.
Cédric Bosdonnat (2):
appliance init: find NIC name for dhcpcd
Make sure gpg-agent is terminated before umount
appliance/init | 3 ++-
customize/customize_run.ml | 3 ++-
2 files
2015 Jul 28
2
Re: [PATCH 2/2] Make sure gpg-agent is terminated before umount
...-agent is still around. Note that this problem only
> affects installing packages on fedora-22 guests.
> ---
> customize/customize_run.ml | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/customize/customize_run.ml b/customize/customize_run.ml
> index bce0aca..81b0951 100644
> --- a/customize/customize_run.ml
> +++ b/customize/customize_run.ml
> @@ -96,7 +96,8 @@ exec >>%s 2>&1
> apt-get $apt_opts install %s
> " quoted_args
> | "dnf" ->
> - sprintf "dnf -y install %s"...
2015 Jul 28
0
[PATCH 2/2] Make sure gpg-agent is terminated before umount
...t/dev can't be
unmounted if gpg-agent is still around. Note that this problem only
affects installing packages on fedora-22 guests.
---
customize/customize_run.ml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index bce0aca..81b0951 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -96,7 +96,8 @@ exec >>%s 2>&1
apt-get $apt_opts install %s
" quoted_args
| "dnf" ->
- sprintf "dnf -y install %s" quoted_args
+ sprintf "...
2015 Jul 28
0
Re: [PATCH 2/2] Make sure gpg-agent is terminated before umount
...his problem only
> > affects installing packages on fedora-22 guests.
> > ---
> > customize/customize_run.ml | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/customize/customize_run.ml b/customize/customize_run.ml
> > index bce0aca..81b0951 100644
> > --- a/customize/customize_run.ml
> > +++ b/customize/customize_run.ml
> > @@ -96,7 +96,8 @@ exec >>%s 2>&1
> > apt-get $apt_opts install %s
> > " quoted_args
> > | "dnf" ->
> > - s...
2015 Jul 17
0
[PATCH 2/2] customize: add basic subscription-manager operations
...er.mli \
timezone.mli \
urandom.mli
@@ -57,6 +58,7 @@ SOURCES_ML = \
perl_edit.ml \
random_seed.ml \
ssh_key.ml \
+ subscription_manager.ml \
timezone.ml \
customize_cmdline.ml \
customize_run.ml \
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index d9547a0..bce0aca 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -249,6 +249,40 @@ exec >>%s 2>&1
message (f_"Scrubbing: %s") path;
g#scrub_file path
+ | `SMAttach pool ->
+ (match pool with
+ | Subscription_manager.PoolAuto ->
+...
2015 Jul 17
4
[PATCH v2 0/2] basic subscription-manager support in virt-customize
Hi,
this is the v2 of a series introducing basic support for
registering/attaching/unregistering RHEL guests using
subscription-manager, so it is possible to do for example:
$ virt-customize -a rhel-guest.qcow2 \
--sm-credentials user:file:/path/to/password-file --sm-register \
--sm-attach file:/path/to/pool-file \
--install pkg1 --install pkg2 .. \
--sm-remove --sm-unregister