Skip to Content.
Sympa Menu

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

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 (cddfe3a7ca4a548b13f853afa64b025b657475f1)
  • Date: Mon, 11 Sep 2023 23:00:34 +0000

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

smgl/init.d/DETAILS | 2 +-
smgl/init.d/HISTORY | 4 ++++
smgl/init.d/init.d/devices | 4 ++--
3 files changed, 7 insertions(+), 3 deletions(-)

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

init.d: init.d/devices: Don't let mkdir fail if the path already exists
(-p)

diff --git a/smgl/init.d/DETAILS b/smgl/init.d/DETAILS
index 1789ec2..348e360 100755
--- a/smgl/init.d/DETAILS
+++ b/smgl/init.d/DETAILS
@@ -1,6 +1,6 @@
SPELL=init.d
VERSION=2.2.18
- PATCHLEVEL=1
+ PATCHLEVEL=2
LICENSE[0]=GPL
GATHER_DOCS=off
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/smgl/init.d/HISTORY b/smgl/init.d/HISTORY
index aab9e7a..6d4d3d2 100644
--- a/smgl/init.d/HISTORY
+++ b/smgl/init.d/HISTORY
@@ -1,3 +1,7 @@
+2023-08-24 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: PATCHLEVEL++
+ * init.d/devices: Don't let mkdir fail if the path already exists (-p)
+
2023-07-18 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: PATCHLEVEL++
* init.d/mountroot.sh: fixed rootfs mounting with linux-utils 2.39.1
diff --git a/smgl/init.d/init.d/devices b/smgl/init.d/init.d/devices
index 478c43d..2d5e3eb 100755
--- a/smgl/init.d/init.d/devices
+++ b/smgl/init.d/init.d/devices
@@ -9,8 +9,8 @@ ESSENTIAL=yes

udev_mknodes()
{
- mkdir $udev_root/shm
- mkdir $udev_root/pts
+ mkdir -p $udev_root/shm
+ mkdir -p $udev_root/pts
}

start_udev()



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (cddfe3a7ca4a548b13f853afa64b025b657475f1), Eric Sandall, 09/11/2023

Archive powered by MHonArc 2.6.24.

Top of Page