Void Main wrote:lovswr wrote:Actually the commands (from the text comments already in apt.conf) were "true/false". so I set it to not only ignore all gpg signatures but also to not even check for gpg signatures in the first place.
Hmmm, would it be possible to see your apt.conf whether it works or not?
Well is still did not work. Got to the 4th package & then BAM! Dependecies everywhere. But I'm typing from my just installed from CD fedora core 1. I like what I have seen thus far. That upgrade was incredibly smooth,
{
// Give stable archive a higher priority by default
Default-Release "stable";
// Options for apt-get
Get
{
Download-Only "false";
Show-Upgraded "true";
};
};
Dir
{
Etc
{
Scripts "/usr/lib/apt/scripts/";
};
};
RPM
{
// Completely ignore GnuPG signature packages (introduced in rpm 4.1)
Ignore { "gpg-pubkey"; };
// Allow multiple kernel and kernel-related packages to be installed
Allow-Duplicated { "^kernel(-(BOOT|bigmem|debug|smp|unsupported|source))?$"; "^gpg-pubkey$"; };
// Enable source rebuilds
Source
{
Build-Command "rpmbuild --rebuild";
};
// These are for Lua-script configuration
// Do GPG-signature checking for packages
GPG-Check "false";
// Enable to upgrade kernel along with (dist-)upgrade
Upgrade-Kernel "true";
// Enable to hold back packages with modified config files in (dist-)upgrade
Preserve-Config "false";
};
// Options for the downloading routines
Acquire
{
Retries "1";
http::User-Agent "Fedora APT-HTTP/1.3";
// http::Proxy "http://user:password@proxy-server.domain.tld:port/";
// http::Proxy "http://proxy-server.domain.tld:port/";
};
Scripts
{
Init { "gpg-import.lua"; };
RPM
{
Pre { "gpg-checker.lua"; };
};
Apt
{
Upgrade { "kernel-upgrade.lua"; "preserve-conf.lua"; };
DistUpgrade {"kernel-upgrade.lua"; "preserve-conf.lua"; };
};
}