Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (68f6a3f00c14fd6d16f16812d1382090d3b2ec8d)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (68f6a3f00c14fd6d16f16812d1382090d3b2ec8d)
  • Date: Sun, 31 Jan 2010 20:06:51 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

net/ifupdown/HISTORY | 4 ++++
net/ifupdown/INSTALL | 5 ++---
2 files changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 68f6a3f00c14fd6d16f16812d1382090d3b2ec8d
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ifupdown: Just remove /sbin/ifdown if it exists before we install
Fix Bug #14367

diff --git a/net/ifupdown/HISTORY b/net/ifupdown/HISTORY
index 8c7cee2..e2eb434 100644
--- a/net/ifupdown/HISTORY
+++ b/net/ifupdown/HISTORY
@@ -1,3 +1,7 @@
+2010-01-31 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Just remove /sbin/ifdown if it exists before we install
+ Fix Bug #14367
+
2009-10-19 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 0.6.9

diff --git a/net/ifupdown/INSTALL b/net/ifupdown/INSTALL
index 9e8f6b8..fda0e79 100755
--- a/net/ifupdown/INSTALL
+++ b/net/ifupdown/INSTALL
@@ -1,6 +1,5 @@
-# the makefile doesn't ln -sf so it might fail. so we destroy an easily
-# creatable symlink for safety
-if [ -h $INSTALL_ROOT/sbin/ifdown ]; then
+# the makefile doesn't ln -sf so it might fail.
+if [ -f $INSTALL_ROOT/sbin/ifdown ]; then
rm -f $INSTALL_ROOT/sbin/ifdown
fi &&




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (68f6a3f00c14fd6d16f16812d1382090d3b2ec8d), Eric Sandall, 01/31/2010

Archive powered by MHonArc 2.6.24.

Top of Page