aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-11-06 13:21:19 -0500
committerB. Stack <bgstack15@gmail.com>2023-11-06 13:21:19 -0500
commit7bbb2de1ae0dcdee00dac07b7f8ead46c9407ae3 (patch)
treea1a9855b4f8e19fff4641ba77b66fa3f40b28c72
parentv0.0.4 add floppy icon, reenable /browse/sdc1 format (diff)
downloadmyautomount-master.tar.gz
myautomount-master.tar.bz2
myautomount-master.zip
-rw-r--r--debian/changelog6
-rw-r--r--debian/myautomount.dsc2
-rw-r--r--myautomount.spec5
-rw-r--r--src/Makefile2
-rwxr-xr-x[-rw-r--r--]src/usr/libexec/myautomount/myautomount-initialize.sh1
5 files changed, 13 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 6df12f4..e7a1995 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+myautomount (0.0.5-1) obs; urgency=low
+
+ * Fix typo in initialize.sh
+
+ -- B. Stack <bgstack15@gmail.com> Mon, 06 Nov 2023 13:19:33 -0500
+
myautomount (0.0.4-1) obs; urgency=low
* Add floppy drive icon.
diff --git a/debian/myautomount.dsc b/debian/myautomount.dsc
index 9cb2949..bb3ab86 100644
--- a/debian/myautomount.dsc
+++ b/debian/myautomount.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: myautomount
Binary: myautomount
Architecture: all
-Version: 0.0.4-1
+Version: 0.0.5-1
Maintainer: B. Stack <bgstack15@gmail.com>
Homepage: https://bgstack15.wordpress.com/
Standards-Version: 4.5.0
diff --git a/myautomount.spec b/myautomount.spec
index d401d85..d2dde2e 100644
--- a/myautomount.spec
+++ b/myautomount.spec
@@ -20,7 +20,7 @@
%global git_commit 0d5f8b7657527eab8380f5aa81ecd072714cf13c
%{?git_commit:%global git_commit_hash %(c=%{git_commit}; echo ${c:0:7})}
%else
-%global git_commit 0.0.4
+%global git_commit 0.0.5
%endif
%global releasenum 1
@@ -103,6 +103,9 @@ update-desktop-database 1>/dev/null 2>&1 || :
%endif
%changelog
+* Mon Nov 06 2023 B. Stack <bgstack15@gmail.com> - 0.0.5-1
+- New version
+
* Sat Oct 14 2023 B. Stack <bgstack15@gmail.com> - 0.0.4-1
- New version
diff --git a/src/Makefile b/src/Makefile
index 0192a23..ab5a20d 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -14,7 +14,7 @@
# build-devuan: txt2man, bgscripts-core
APPNAME = myautomount
-APPVERSION = 0.0.4
+APPVERSION = 0.0.5
SRCDIR = $(CURDIR)
prefix = /usr
SYSCONFDIR = $(DESTDIR)/etc
diff --git a/src/usr/libexec/myautomount/myautomount-initialize.sh b/src/usr/libexec/myautomount/myautomount-initialize.sh
index 1798c65..5cd0083 100644..100755
--- a/src/usr/libexec/myautomount/myautomount-initialize.sh
+++ b/src/usr/libexec/myautomount/myautomount-initialize.sh
@@ -32,6 +32,7 @@ setupSystem() {
echo "* -fstype=auto,noatime,rw,nosuid :/dev/& "
} > "${MYA_PREFIX}${AUTOMOUNT_FILE}" || fail "Could not setup autofs rules! Check if this is being run as root?"
_needrestart=1
+ }
! grep -q -e "${AUTOMOUNT_BROWSEDIR}" "${MYA_PREFIX}${AUTOMOUNT_DIR_FILE}" 2>/dev/null && {
{
touch "${MYA_PREFIX}${AUTOMOUNT_DIR_FILE}"
bgstack15