[Glibc-bsd-commits] r1812 - trunk/freebsd-utils/debian

Aurelien Jarno aurel32 at alioth.debian.org
Tue Dec 19 17:24:41 CET 2006


Author: aurel32
Date: 2006-12-19 17:24:41 +0100 (Tue, 19 Dec 2006)
New Revision: 1812

Added:
   trunk/freebsd-utils/debian/kfreebsd-common.postinst
   trunk/freebsd-utils/debian/kldutils.postinst
Modified:
   trunk/freebsd-utils/debian/changelog
   trunk/freebsd-utils/debian/control
Log:
  * Add postinst scripts to kfreebsd-common and kldutils to remove the old
    initscripts.



Modified: trunk/freebsd-utils/debian/changelog
===================================================================
--- trunk/freebsd-utils/debian/changelog	2006-12-19 15:37:39 UTC (rev 1811)
+++ trunk/freebsd-utils/debian/changelog	2006-12-19 16:24:41 UTC (rev 1812)
@@ -2,6 +2,8 @@
 
   * Conflicts with inetutils-tools (<= inetutils-tools_2:1.4.3+20051212-4).
   * Bump the Replaces: freebsd-hackedutils to 6.1-1 (for kfreebsd-amd64).
+  * Add postinst scripts to kfreebsd-common and kldutils to remove the old
+    initscripts.
 
  -- Aurelien Jarno <aurel32 at debian.org>  Tue, 19 Dec 2006 15:52:12 +0100
 

Modified: trunk/freebsd-utils/debian/control
===================================================================
--- trunk/freebsd-utils/debian/control	2006-12-19 15:37:39 UTC (rev 1811)
+++ trunk/freebsd-utils/debian/control	2006-12-19 16:24:41 UTC (rev 1812)
@@ -17,7 +17,7 @@
 Essential: yes
 Architecture: kfreebsd-i386 kfreebsd-amd64
 Depends: ${shlibs:Depends}, freebsd-hackedutils (>= 6.1-1)
-Conflicts: inetutils-tools (<= inetutils-tools_2:1.4.3+20051212-4)
+Conflicts: inetutils-tools (<= 2:1.4.3+20051212-4)
 Replaces: freebsd-hackedutils (<= 6.1-1)
 Description: FreeBSD utilities needed for GNU/kFreeBSD.
  This package contains FreeBSD utilities needed for GNU/kFreeBSD.

Added: trunk/freebsd-utils/debian/kfreebsd-common.postinst
===================================================================
--- trunk/freebsd-utils/debian/kfreebsd-common.postinst	2006-12-19 15:37:39 UTC (rev 1811)
+++ trunk/freebsd-utils/debian/kfreebsd-common.postinst	2006-12-19 16:24:41 UTC (rev 1812)
@@ -0,0 +1,4 @@
+#!/bin/sh
+set -e
+update-rc.d kfreebsd-common remove >/dev/null || exit 0
+rm -f /etc/init.d/kfreebsd-common

Added: trunk/freebsd-utils/debian/kldutils.postinst
===================================================================
--- trunk/freebsd-utils/debian/kldutils.postinst	2006-12-19 15:37:39 UTC (rev 1811)
+++ trunk/freebsd-utils/debian/kldutils.postinst	2006-12-19 16:24:41 UTC (rev 1812)
@@ -0,0 +1,4 @@
+#!/bin/sh
+set -e
+update-rc.d kldutils remove >/dev/null || exit 0
+rm -f /etc/init.d/kldutils




More information about the Glibc-bsd-commits mailing list