Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Thomas Orgis (1267e785dad6da90332fd4263bd332c4286d1261)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Thomas Orgis <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Thomas Orgis (1267e785dad6da90332fd4263bd332c4286d1261)
  • Date: Fri, 9 Mar 2007 03:31:58 -0600

GIT changes to master grimoire by Thomas Orgis <sobukus AT sourcemage.org>:

net/net-tools/DETAILS | 2 +-
net/net-tools/HISTORY | 4 ++++
net/net-tools/ifdown | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit c33baa51ca6d9a87b69c84f7cb957b412541cf60
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>

ifdown was broken with bash 3.2; now it really shuts down dhcp on a
dynamic interface

diff --git a/net/net-tools/DETAILS b/net/net-tools/DETAILS
index 0965cbd..d3d369b 100755
--- a/net/net-tools/DETAILS
+++ b/net/net-tools/DETAILS
@@ -4,7 +4,7 @@
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://www.tazenda.demon.co.uk/phil/net-tools/$SOURCE

SOURCE_HASH=sha512:8e1ae9bca726ad7d795a06c58388f9e11c1d617d94eebb9ed18bd11e5f34c6541e1ffe631706c407996db86e78df6e5cf1968a2d90b242b473596fda3b6d1eae
- PATCHLEVEL=7
+ PATCHLEVEL=8
LICENSE[0]=GPL
WEB_SITE=http://www.tazenda.demon.co.uk/phil/net-tools
ENTERED=20010922
diff --git a/net/net-tools/HISTORY b/net/net-tools/HISTORY
index 284e029..c030747 100644
--- a/net/net-tools/HISTORY
+++ b/net/net-tools/HISTORY
@@ -1,3 +1,7 @@
+2007-03-09 Thomas Orgis <sobukus AT sourcemage.org>
+ * ifdown, DETAILS: fix ifdown to work with bash 3.2
+ (no quoting of regex pattern), PATCHLEVEL++
+
2007-02-17 Pol Vinogradov <vin.public AT gmail.com>
* BUILD: added gettext stuff handling
* CONFIGURE: removed GETTEXT query, added missing &&
diff --git a/net/net-tools/ifdown b/net/net-tools/ifdown
index 57526ee..7ae0aaa 100644
--- a/net/net-tools/ifdown
+++ b/net/net-tools/ifdown
@@ -17,7 +17,7 @@ exists_in_text()

_do_device_down()
{
- if [[ "$MODE" =~ "^dynamic" ]]; then
+ if [[ "$MODE" =~ ^dynamic ]]; then
echo "Stopping dhcpcd on $DEV ..."
dhcpcd -k $DEV &&
sleep 2



  • [SM-Commit] GIT changes to master grimoire by Thomas Orgis (1267e785dad6da90332fd4263bd332c4286d1261), Thomas Orgis, 03/09/2007

Archive powered by MHonArc 2.6.24.

Top of Page