Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (4f4c9a7af7cb8e36e30d288925aa8e0e1bb20514)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (4f4c9a7af7cb8e36e30d288925aa8e0e1bb20514)
  • Date: Mon, 25 Feb 2008 09:28:36 -0600

GIT changes to master grimoire by Ladislav Hagara <ladislav.hagara AT unob.cz>:

net/ifupdown/DETAILS | 1 +
net/ifupdown/HISTORY | 3 +++
net/ifupdown/init.d/network | 6 +++++-
3 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 4f4c9a7af7cb8e36e30d288925aa8e0e1bb20514
Author: Ladislav Hagara <ladislav.hagara AT unob.cz>
Commit: Ladislav Hagara <ladislav.hagara AT unob.cz>

ifupdown: added info messages

While i switched my box to the new networking i missed some info messages.
I had to use "cast -c net-tools", ifupdown had problem with /sbin/ifdown
from original net-tools (while creating link).
Does any tool exist for creating /etc/network/interfaces (users likes
tools, should we update our netconf?)?
Does anybody have some experiences with http://etcnet.org/ ?

diff --git a/net/ifupdown/DETAILS b/net/ifupdown/DETAILS
index e0f2520..09b8e65 100755
--- a/net/ifupdown/DETAILS
+++ b/net/ifupdown/DETAILS
@@ -1,5 +1,6 @@
SPELL=ifupdown
VERSION=0.6.8
+ PATCHLEVEL=1
SOURCE=${SPELL}_$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://ftp.de.debian.org/debian/pool/main/i/ifupdown/$SOURCE
diff --git a/net/ifupdown/HISTORY b/net/ifupdown/HISTORY
index 9bb0fe7..e7e1914 100644
--- a/net/ifupdown/HISTORY
+++ b/net/ifupdown/HISTORY
@@ -1,3 +1,6 @@
+2008-02-25 Ladislav Hagara <hgr AT vabo.cz>
+ * init.d/network, DETAILS: added messages, PATCHLEVEL=1
+
2008-01-30 David Kowis <dkowis AT shlrm.org>
* DETAILS,BUILD,DEPENDS,PREPARE: Created this spell

diff --git a/net/ifupdown/init.d/network b/net/ifupdown/init.d/network
index 3bde6dc..b1dbe48 100755
--- a/net/ifupdown/init.d/network
+++ b/net/ifupdown/init.d/network
@@ -14,17 +14,21 @@ required_executable /sbin/ifdown
start()
{
# make sure all the interfaces really do come up
+ echo "Starting networking..."
/sbin/ifup --force -a
+ evaluate_retval
}

stop()
{
+ echo "Stopping networking..."
/sbin/ifdown -a
+ evaluate_retval
}

restart()
{
- echo "Shutting down ALL interfaces"
+ echo "Restarting ALL interfaces"
stop
# sleeping for some trickle time
sleep 3



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (4f4c9a7af7cb8e36e30d288925aa8e0e1bb20514), Ladislav Hagara, 02/25/2008

Archive powered by MHonArc 2.6.24.

Top of Page