Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-0.62 grimoire by Vlad Glagolev (58d901f43979e62f5c1f7623571eb15e29283409)

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 stable-0.62 grimoire by Vlad Glagolev (58d901f43979e62f5c1f7623571eb15e29283409)
  • Date: Wed, 22 Apr 2015 04:00:35 -0500

GIT changes to stable-0.62 grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 ++-
FUNCTIONS | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)

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

do not force noexec option in check_tmp_noexec()
(cherry picked from commit f5aaec3e15bbd63e6b21454982a5f353755f2fb6)

diff --git a/ChangeLog b/ChangeLog
index ce6eece..3f6f21b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2015-04-22 Vlad Glagolev <stealth AT sourcemage.org>
- * FUNCTIONS: fixed check_tmp_noexec for tmp-less systems
+ * FUNCTIONS: fixed check_tmp_noexec for tmp-less systems, do not force
+ noexec option

2015-04-14 Vlad Glagolev <stealth AT sourcemage.org>
* python-pypi/FUNCTIONS: fixed arguments' passing to the root
FUNCTIONS
diff --git a/FUNCTIONS b/FUNCTIONS
index 261eb7a..179b05a 100755
--- a/FUNCTIONS
+++ b/FUNCTIONS
@@ -730,7 +730,7 @@ function check_tmp_noexec() {
message -n "${MESSAGE_COLOR}Remounting $1 with exec option (required for
build)... " &&
mount -o exec,remount $1 &&
message "done${DEFAULT_COLOR}"
- else
+ elif awk -v tmp=$1 '{ if ($2 == tmp) print $4 }' < /etc/fstab | grep -q
noexec; then
message -n "${MESSAGE_COLOR}Restoring $1 mount options... " &&
mount -o noexec,remount $1 &&
message "done${DEFAULT_COLOR}"



  • [SM-Commit] GIT changes to stable-0.62 grimoire by Vlad Glagolev (58d901f43979e62f5c1f7623571eb15e29283409), Vlad Glagolev, 04/22/2015

Archive powered by MHonArc 2.6.24.

Top of Page