Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (95f13eb1ac5a9dc00b73497abf8ed6c792b0d0c7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (95f13eb1ac5a9dc00b73497abf8ed6c792b0d0c7)
  • Date: Sat, 21 Oct 2006 04:04:19 -0500

GIT changes to master grimoire by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

smgl/init.d/DETAILS | 2 +-
smgl/init.d/HISTORY | 4 ++++
smgl/init.d/init.d/mountall.sh | 6 +++++-
3 files changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 95f13eb1ac5a9dc00b73497abf8ed6c792b0d0c7
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

init.d: fix #7311, proc not showing in /etc/mtab

diff --git a/smgl/init.d/DETAILS b/smgl/init.d/DETAILS
index f7e3343..ffaa50d 100755
--- a/smgl/init.d/DETAILS
+++ b/smgl/init.d/DETAILS
@@ -1,7 +1,7 @@
SPELL=init.d
VERSION=2.2.0
LICENSE[0]=GPL
- PATCHLEVEL=13
+ PATCHLEVEL=14
KEYWORDS="smgl"
ENTERED=20030505
SHORT="This is the basic initalization system of SMGL"
diff --git a/smgl/init.d/HISTORY b/smgl/init.d/HISTORY
index 53357b6..ca6c706 100644
--- a/smgl/init.d/HISTORY
+++ b/smgl/init.d/HISTORY
@@ -1,3 +1,7 @@
+2006-10-15 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * init.d/devices: fix #7311, proc not showing in /etc/mtab
+ * DETAILS: PATCHLEVEL++
+
2006-09-23 Flavien Bridault <vlaaad AT sourcemage.org>
* DEPENDS: Check which udev spell we should cast according to the
kernel version
diff --git a/smgl/init.d/init.d/mountall.sh b/smgl/init.d/init.d/mountall.sh
index 3215c83..65bd65c 100755
--- a/smgl/init.d/init.d/mountall.sh
+++ b/smgl/init.d/init.d/mountall.sh
@@ -58,7 +58,11 @@ start()

echo "Mounting proc file system..."
mount -a -t /proc
- evaluate_retval
+ evaluate_retval &&
+# bug 7311
+ if ! grep -wq "/proc" /etc/mtab; then
+ builtin echo 'none /proc proc rw 0 0' >> /etc/mtab
+ fi

if optional_executable /sbin/vgscan && optional_executable /sbin/vgchange
; then
echo -n "Scanning for and initializing all available LVM volume
groups..."



  • [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (95f13eb1ac5a9dc00b73497abf8ed6c792b0d0c7), Jaka Kranjc, 10/21/2006

Archive powered by MHonArc 2.6.24.

Top of Page