Apt conf OpenSUSE10 1 64: Unterschied zwischen den Versionen

Aus Linupedia.org
Wechseln zu: Navigation, Suche
K
Zeile 1: Zeile 1:
[[Category:Musterkonfigurationen]]
 
 
 
'''apt.conf Musterdatei'''
 
'''apt.conf Musterdatei'''
  
Zeile 31: Zeile 29:
 
   
 
   
 
</code>
 
</code>
 +
 +
''--[[Benutzer:TomcatMJ|TomcatMJ]]''
 +
[[Category:Musterkonfigurationen]]
 +
[[Category:Apt]]

Version vom 18. August 2006, 21:42 Uhr

apt.conf Musterdatei

Eine /etc/apt/apt.d/apt.conf aus einem gewachsenen System, welches mittlerweile smart nutzt, mit ignorierten RPM-Keys (nützlich wenn Keys nicht vorhanden sind oder mal jemand vergessen at sein Keyfile up to date zu halten) und festgehaltenem Kernel(bitte aktualisieren wenn jemand eine funktionierende neuere apt.conf hat, dies hier ist noch ohne repo-md Unterstützung):

// with "apt-config dump" all settings can be viewed

Acquire::CDROM::Copy "true";
RPM::Allow-Duplicated-Warning "false";
Debug
{
    pkgRPMPM "false";
}

RPM
{
   // Hold (do not update) a list with pkgs:
   // Hold { "kernel-default"; "kernel-source"; };
   // Leave list empty to disable
   Ignore {"gpg-pubkey"; }; 

   Options { };
   Install-Options "";
   Erase-Options "";
   Source {
       Build-Command "rpmbuild --rebuild";
   };
}

--TomcatMJ