[Pkg-vsquare-changes] r125 - vde2/trunk/debian

filippo at alioth.debian.org filippo at alioth.debian.org
Mon Apr 7 10:23:53 UTC 2008


Author: filippo
Date: 2008-04-07 10:23:52 +0000 (Mon, 07 Apr 2008)
New Revision: 125

Modified:
   vde2/trunk/debian/changelog
   vde2/trunk/debian/postinst
Log:
Do not assume MAKEDEV presence in postinst

Modified: vde2/trunk/debian/changelog
===================================================================
--- vde2/trunk/debian/changelog	2008-02-18 17:26:48 UTC (rev 124)
+++ vde2/trunk/debian/changelog	2008-04-07 10:23:52 UTC (rev 125)
@@ -3,6 +3,7 @@
   * Suggest: qemu and kvm as requested in #461514
   * Expand and spell-check README.Debian, add manual method example
   (Closes: #466363)
+  * Do not assume MAKEDEV presence in postinst
 
  -- Filippo Giunchedi <filippo at debian.org>  Mon, 18 Feb 2008 18:26:04 +0100
 

Modified: vde2/trunk/debian/postinst
===================================================================
--- vde2/trunk/debian/postinst	2008-02-18 17:26:48 UTC (rev 124)
+++ vde2/trunk/debian/postinst	2008-04-07 10:23:52 UTC (rev 125)
@@ -17,7 +17,7 @@
     fi
 
     if [ ! -e /dev/.devfsd ] && [ ! -e /dev/net/tun ]; then
-        (cd /dev && MAKEDEV tun)
+        [ -x /sbin/MAKEDEV ] && (cd /dev && MAKEDEV tun)
     fi
 fi
 




More information about the Pkg-vsquare-changes mailing list