[D-community-commits] r179 - in trunk/fai-config-dir: files/etc/apt files/etc/apt/preferences package_config scripts/DEFAULT

h01ger-guest at alioth.debian.org h01ger-guest at alioth.debian.org
Tue Dec 4 21:19:13 UTC 2007


Author: h01ger-guest
Date: 2007-12-04 21:19:13 +0000 (Tue, 04 Dec 2007)
New Revision: 179

Added:
   trunk/fai-config-dir/files/etc/apt/preferences/
   trunk/fai-config-dir/files/etc/apt/preferences/bikeshed
   trunk/fai-config-dir/scripts/DEFAULT/92-add-bpo-key
Modified:
   trunk/fai-config-dir/package_config/DEFAULT
Log:
add bpo apt key and install git from there

Added: trunk/fai-config-dir/files/etc/apt/preferences/bikeshed
===================================================================
--- trunk/fai-config-dir/files/etc/apt/preferences/bikeshed	                        (rev 0)
+++ trunk/fai-config-dir/files/etc/apt/preferences/bikeshed	2007-12-04 21:19:13 UTC (rev 179)
@@ -0,0 +1,4 @@
+Package: git*
+Pin: release a=etch-backports
+Pin-Priority: 999
+

Modified: trunk/fai-config-dir/package_config/DEFAULT
===================================================================
--- trunk/fai-config-dir/package_config/DEFAULT	2007-12-04 20:56:09 UTC (rev 178)
+++ trunk/fai-config-dir/package_config/DEFAULT	2007-12-04 21:19:13 UTC (rev 179)
@@ -4,6 +4,7 @@
 ntpdate munin-node 
 sudo lshw
 cfengine2 fai-client fai-doc debconf-utils
+git-core git-doc git-svn 
 
 PACKAGES remove
 portmap nfs-common

Copied: trunk/fai-config-dir/scripts/DEFAULT/92-add-bpo-key (from rev 178, trunk/fai-config-dir/scripts/DEFAULT/91-add-debian-edu-archive-key)
===================================================================
--- trunk/fai-config-dir/scripts/DEFAULT/92-add-bpo-key	                        (rev 0)
+++ trunk/fai-config-dir/scripts/DEFAULT/92-add-bpo-key	2007-12-04 21:19:13 UTC (rev 179)
@@ -0,0 +1,24 @@
+#! /bin/sh
+
+#
+#        (c) 2007 Holger Levsen         holger at layer-acht.org
+#        GPL2 licenced
+#
+
+# pub   1024D/16BA136C 2005-08-21
+#       Key fingerprint = 2703 4F81 A2EB 2840 A438  6C09 EA8E 8B21 16BA 136C
+# uid                  Backports.org Archive Key <ftp-master at backports.org>
+# sub   2048g/5B82CECE 2005-08-21
+
+KEYID=16BA136C
+gpg --fingerprint $KEYID |{
+	# install the debian-keyring securily:
+	aptitude install debian-keyring
+	# fetch the key insecurily:
+	gpg --keyserver pgpkeys.pca.dfn.de --recv-keys $KEYID
+	# check securily if the key is correct and add it to root's keyring if it is:
+	gpg --keyring /usr/share/keyrings/debian-keyring.gpg --check-sigs $KEYID && gpg --export $KEYID | apt-key add - 
+	# update the list of available packages:
+	aptitude update
+}
+




More information about the D-community-commits mailing list