Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (0d8929043df8570fb42e649d7881fd86f185550c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (0d8929043df8570fb42e649d7881fd86f185550c)
  • Date: Tue, 7 Feb 2017 18:24:34 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

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

New commits:
commit 0d8929043df8570fb42e649d7881fd86f185550c
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

init.d: mountall.sh: Fix exit status, PATCHLEVEL++

diff --git a/smgl/init.d/DETAILS b/smgl/init.d/DETAILS
index 74b1d1a..81db249 100755
--- a/smgl/init.d/DETAILS
+++ b/smgl/init.d/DETAILS
@@ -2,7 +2,7 @@
VERSION=2.2.15
LICENSE[0]=GPL
GATHER_DOCS=off
- PATCHLEVEL=1
+ PATCHLEVEL=2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
KEYWORDS="smgl"
ENTERED=20030505
diff --git a/smgl/init.d/HISTORY b/smgl/init.d/HISTORY
index fd928b1..733a8bb 100644
--- a/smgl/init.d/HISTORY
+++ b/smgl/init.d/HISTORY
@@ -1,3 +1,7 @@
+2017-02-07 Ismael Luceno <ismael AT sourcemage.org>
+ * init.d/mountall.sh: Fixed exit status when cryptsetup isn't found
+ * DETAILS: PATCHLEVEL++
+
2016-06-16 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: Bumped version to 2.2.15
* init.d/mountall.sh: Added support for encrypted swap
diff --git a/smgl/init.d/init.d/mountall.sh b/smgl/init.d/init.d/mountall.sh
index e28d806..7b55c2f 100755
--- a/smgl/init.d/init.d/mountall.sh
+++ b/smgl/init.d/init.d/mountall.sh
@@ -73,7 +73,7 @@ scanlvm()

start_cryptfs()
{
- optional_executable /usr/sbin/cryptsetup && [ -f /etc/crypttab ] || return
+ optional_executable /usr/sbin/cryptsetup && [ -f /etc/crypttab ] || return 0
echo "Attempting to open encrypted block devices"
# TODO implement parsing of options
awk '



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (0d8929043df8570fb42e649d7881fd86f185550c), Ismael Luceno, 02/07/2017

Archive powered by MHonArc 2.6.24.

Top of Page