Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (eba33528ceef5534da0676bbf96f6b5a2c98f86c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (eba33528ceef5534da0676bbf96f6b5a2c98f86c)
  • Date: Sat, 24 Sep 2016 17:09:11 +0000

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

net/ifenslave/HISTORY | 4 ++++
net/ifupdown/DETAILS | 1 +
net/ifupdown/HISTORY | 5 +++++
net/ifupdown/INSTALL | 9 +++++----
4 files changed, 15 insertions(+), 4 deletions(-)

New commits:
commit eba33528ceef5534da0676bbf96f6b5a2c98f86c
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

ifupdown: install dummy files to protect hook dirs

diff --git a/net/ifenslave/HISTORY b/net/ifenslave/HISTORY
index 2b49ea8..9bf07a7 100644
--- a/net/ifenslave/HISTORY
+++ b/net/ifenslave/HISTORY
@@ -1,3 +1,7 @@
+2016-09-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * CONFLICTS: added, conflicts with kernels < 3.11
+ * PREPARE: added, handling with manually-installed ifenslave
+
2016-06-01 Eric Sandall <sandalle AT sourcemage.org>
* Created

diff --git a/net/ifupdown/DETAILS b/net/ifupdown/DETAILS
index c4886be..1e3384a 100755
--- a/net/ifupdown/DETAILS
+++ b/net/ifupdown/DETAILS
@@ -1,5 +1,6 @@
SPELL=ifupdown
VERSION=0.8.13
+ PATCHLEVEL=1

SOURCE_HASH=sha512:1c85a9a55616a4310b122ba45429bd1b61f3da5da30291ed828791d2483bb53b34f87718b76625f8698aec60ff4e60be6346cd6ed38fb69e4853ccba381ff0fd
SOURCE=${SPELL}_$VERSION.tar.xz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL"
diff --git a/net/ifupdown/HISTORY b/net/ifupdown/HISTORY
index f3d6477..14eafec 100644
--- a/net/ifupdown/HISTORY
+++ b/net/ifupdown/HISTORY
@@ -1,3 +1,8 @@
+2016-09-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * INSTALL: install dummy files as another protection measure against
+ other spells handling hook dirs
+
2016-09-02 David C. Haley <khoralin AT gmail.com>
* DETAILS: Updated to 0.8.13
Updated SOURCE_URL
diff --git a/net/ifupdown/INSTALL b/net/ifupdown/INSTALL
index 5ad1063..00247a2 100755
--- a/net/ifupdown/INSTALL
+++ b/net/ifupdown/INSTALL
@@ -16,7 +16,8 @@ install -v -m644 -D -t
"$INSTALL_ROOT/usr/share/doc/$SPELL/examples" \
# make the default directories
mkdir -p $INSTALL_ROOT/etc/network &&
mkdir -p $INSTALL_ROOT/etc/network/run &&
-mkdir -p $INSTALL_ROOT/etc/network/if-post-down.d &&
-mkdir -p $INSTALL_ROOT/etc/network/if-pre-up.d &&
-mkdir -p $INSTALL_ROOT/etc/network/if-down.d &&
-mkdir -p $INSTALL_ROOT/etc/network/if-up.d
+
+for hook_dir in if-post-down if-pre-up if-down if-up; do
+ install -vm 755 -d "$INSTALL_ROOT/etc/network/${hook_dir}.d" &&
+ touch "$INSTALL_ROOT/etc/network/${hook_dir}.d/.keep"
+done



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (eba33528ceef5534da0676bbf96f6b5a2c98f86c), Vlad Glagolev, 09/24/2016

Archive powered by MHonArc 2.6.24.

Top of Page