search for: gpgkeys

Displaying 20 results from an estimated 277 matches for "gpgkeys".

Did you mean: gpgkey
2014 Oct 31
4
[PATCH] builder: move the gpgkey_type type from Sigchecker to Utils
No functional change, just code motion. --- builder/builder.ml | 6 +++--- builder/list_entries.ml | 12 ++++++------ builder/list_entries.mli | 2 +- builder/sigchecker.ml | 5 ----- builder/sigchecker.mli | 7 +------ builder/utils.ml | 5 +++++ 6 files changed, 16 insertions(+), 21 deletions(-) diff --git a/builder/builder.ml b/builder/builder.ml index
2012 Jun 01
1
problems installing parted tool
i have downloaded the CentOS distribution that comes with Xen Cloud Platform (XCP) at http://www.xen.org/download/xcp/index.html. i am trying to install the parted utility. yum install parted however, i get the following message. Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile Setting up Install Process No package parted available. Nothing to do any ideas on what's
2006 Aug 30
2
Yum updates packages for other arch too
Hi, I have the x86_64 arch on my server so therfore i expect that yum updates only x86_64 packages. With the last *yum update* i?ve noticed a strange behaviour while retrieving the needed packeges. As you you see, yum wants install packages for different architectures: glibc x86_64 2.3.4-2.25 base 4.9 M glibc i686 2.3.4-2.25 base 5.1 M . .
2014 Oct 31
0
[PATCH] builder: pass Sources.source objects directly
Instead of passing the (uri, key, proxy) tuple around, pass the whole Sources.source record; this requires creating proper Sources.source also for uri+fingerprint passed via command line. No functional changes. --- builder/Makefile.am | 2 +- builder/builder.ml | 17 +++++++++-------- builder/index_parser.ml | 14 +++++++------- builder/index_parser.mli | 2 +-
2023 May 26
2
IUS not pulling latest PHP packages
Hi, I am running CentOS Linux release 7.9.2009 (Core) and have enabled both epel and ius repository - ius-release-2-1.el7.ius.noarch - epel-release-7-14.noarch IUS not pulling the latest PHP packages. I have ran yum clean metadata and yum clean all commands but no luck. The latest version is *7.4.33* # php -v PHP 7.4.30 (cli) (built: Jun 10 2022 16:22:42) ( NTS ) Copyright (c) The PHP
2023 May 26
1
IUS not pulling latest PHP packages
Hello, looking at the metadata for EPEL and IUS, neither seem to carry PHP 7.4. It is EOL anyway, so you should migrate to PHP 8. To find out where your current PHP comes from try something like: # rpm -qf /usr/bin/php # rpm -qi php I would recommend you switch to Remi's repo and upgrade to PHP 8: https://rpms.remirepo.net/ Kind regards, Steve Am 26.05.2023 12:50, schrieb Kaushal
2016 Oct 24
0
[PATCH 2/2] builder: consolidate handling of temporary files/dirs
Create a single temporary directory for all the files created during the virt-builder run (except big disk images, which already use the libguestfs cache directory). A single directory means there is no need to manually schedule all the temporary files and directories for removal when the application quits. --- builder/builder.ml | 12 ++++++++++-- builder/downloader.ml |
2016 Oct 25
0
[PATCH v2 2/2] builder: consolidate handling of temporary files/dirs
Create a single temporary directory for all the files created during the virt-builder run (except big disk images, which already use the libguestfs cache directory). A single directory means there is no need to manually schedule all the temporary files and directories for removal when the application quits. --- builder/builder.ml | 12 ++++++++++-- builder/downloader.ml |
2008 Aug 21
1
YumRepo Warning: not using ftp, http[s], or file for repos, skipping - 5 is not a valid release or hasnt been released yet
Hi all Does anyone know what causes this error? I have setup a local CentOS repository, with mrepo, and can succesfully use it for updates & installation of just about anything. Yet, this error comes up. Here's my /etc/yum.conf: # PUT YOUR REPOS HERE OR IN separate files named file.repo # in /etc/yum.repos.d [base-local] name=CentOS-$releasever - Base #mirrorlist=
2015 Jul 28
0
[PATCH 01/10] builder: add format=FMT in repository .conf files
First step in allow different formats for indexes of images, aside the current one. The only accepted value is "native". --- builder/builder.ml | 5 ++++- builder/sources.ml | 16 ++++++++++++++++ builder/sources.mli | 3 +++ builder/virt-builder.pod | 16 ++++++++++++++++ 4 files changed, 39 insertions(+), 1 deletion(-) diff --git a/builder/builder.ml
2016 Oct 25
2
[PATCH v2 1/2] mllib: curl: add optional tmpdir parameter
Add a new optional parameter for the Curl ADT, so temporary files can be created in a specified directory (which is supposed to be temporary, and disposed only when the application quits). --- mllib/curl.ml | 10 ++++++---- mllib/curl.mli | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/mllib/curl.ml b/mllib/curl.ml index 376406e..baa75ec 100644 --- a/mllib/curl.ml +++
2006 Feb 11
2
FW: Unable to update
Thanks for the quick response! Here is my yum.repos.d -> [base] name=CentOS-$releasever - Base baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ gpgcheck=1 gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4 #released updates [update] name=CentOS-$releasever - Updates baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/ gpgcheck=1
2011 Mar 16
3
only one puppet client fails with yum
hello list.. I am sharing a yum configuration in a class (centos.pp) between two nodes. But the yum configuration doesn''t apply at all to one node even tho it does to another identically configured node. ## packages are failing to install via yum on one ec2 aws instance and another identical ec2 instance works fine [root@kromep2 ~]# cat /etc/redhat-release CentOS release 5.5 (Final)
2008 Aug 07
1
Firewire/IEEE1394 support on centos.plus repro and yum update
Helo, I'm trying to update a centos server with a kernel form the centos.plus repro because it contain Firewire/IEEE1394 support. But when y do a : # yum update The kernel from the base is more recent thant the centos plus repro I have tried with the http://wiki.centos.org/PackageManagement/Yum/Priorities plug-in and it didn't take the right kernel :
2016 Oct 24
2
[PATCH 1/2] mllib: curl: add optional tmpdir parameter
Add a new optional parameter for the Curl ADT, so temporary files can be created in a specified directory (which is supposed to be temporary, and disposed only when the application quits). --- mllib/curl.ml | 16 +++++++++++----- mllib/curl.mli | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/mllib/curl.ml b/mllib/curl.ml index 376406e..7d07125 100644 --- a/mllib/curl.ml
2007 Apr 17
1
How to upgrate to CentOS 5 from CentOS 4.4 by using yum.
Hi, My all boxes are running CentOS 4.4. When They were running CentOS 4.3. it upgraded to CentOS 4.4 due to yum. But, This time, My all boxes are still running CentOS 4.4. I did below commands, But no luck yet. [root at mailgw yum.repos.d]# yum update Loading "protectbase" plugin Setting up Update Process Setting up repositories Reading repository metadata in from local files
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
2007 Jul 20
1
centosplus repo updates
Hello, First of all thanks to the poster on the wiki for centosplus. I've configed it added include and exclude lines, do i need the centos-priority plugin? I want to enable centosplus to use the centosplus kernel and the centosplus webstack. Below are my base, updates, and centosplus repo definitions. I'm getting an error when i do a yum update that a dependency for postfix
2016 Aug 25
2
Centos 7 and php 5.5
On 08/25/2016 07:07 AM, Alice Wonder wrote: > Looks like you are trying to install packages built for EL6 in EL7 > > I'm fairly certain Remi has EL7 packages for PHP 7. That should read "PHP packages for EL7"
2017 Mar 12
2
How do I confirm importing repo key without user intervention?
> what about importing the key beforehand > rpm --import keyfile That's what I do. But when I try to install a package from that (passenger) repository manually, yum wants my confirmation: # curl --fail -sSLo /etc/yum.repos.d/passenger.repo https://oss-binaries.phusionpassenger.com/yum/definitions/el-passenger.repo # grep gpgkey /etc/yum.repos.d/passenger.repo