Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Ismael Luceno (b1af1023c73cbca4e3a9021bc81dc367b9fee08b)

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 sorcery by Ismael Luceno (b1af1023c73cbca4e3a9021bc81dc367b9fee08b)
  • Date: Sun, 16 Jul 2023 06:21:49 +0000

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

var/lib/sorcery/modules/libtrack | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)

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

libtrack: Fix castfs detection

diff --git a/var/lib/sorcery/modules/libtrack
b/var/lib/sorcery/modules/libtrack
index 02b053a..2c02db4 100755
--- a/var/lib/sorcery/modules/libtrack
+++ b/var/lib/sorcery/modules/libtrack
@@ -178,12 +178,10 @@ real_devoke_installwatch() {

is_castfs_installed()
{
- if type castfs >/dev/null 2>&1 &&
- (
- modprobe fuse > /dev/null 2>&1 ||
- grep -q '^nodev[\t\v\f\r ]*fuse$' /proc/filesystems
- ) &&
- [ -c /dev/fuse ]
+ modprobe fuse >/dev/null 2>&1
+ if [ -c /dev/fuse ] &&
+ grep -q '^nodev fuse$' /proc/filesystems &&
+ type castfs >/dev/null 2>&1
then
message "${MESSAGE_COLOR}Staging enabled${DEFAULT_COLOR}"
return 0



  • [SM-Commit] GIT changes to master sorcery by Ismael Luceno (b1af1023c73cbca4e3a9021bc81dc367b9fee08b), Ismael Luceno, 07/16/2023

Archive powered by MHonArc 2.6.24.

Top of Page