diff options
Diffstat (limited to 'src/usr')
-rwxr-xr-x | src/usr/bin/myautomountd | 2 | ||||
-rw-r--r-- | src/usr/libexec/myautomount/myautomount-initialize.sh | 7 | ||||
-rw-r--r-- | src/usr/share/applications/myautomount-trayicon.desktop | 1 | ||||
-rw-r--r-- | src/usr/share/applications/myautomountd.desktop | 1 |
4 files changed, 7 insertions, 4 deletions
diff --git a/src/usr/bin/myautomountd b/src/usr/bin/myautomountd index 340ce04..06bb2da 100755 --- a/src/usr/bin/myautomountd +++ b/src/usr/bin/myautomountd @@ -120,7 +120,7 @@ trap '__ec=$? ; clean_automount ; trap "" 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 mkdir -p "${AUTOMOUNT_BASEDIR}" # run initialization script as root -$( which sudo 2>/dev/null ) /usr/libexec/myautomount/myautomount-initialize.sh +$( which sudo 2>/dev/null ) AUTOMOUNT_USER="${USER}" /usr/libexec/myautomount/myautomount-initialize.sh _response="${?}" ; test ${_response} -ne 0 && exit ${_response} # MAIN diff --git a/src/usr/libexec/myautomount/myautomount-initialize.sh b/src/usr/libexec/myautomount/myautomount-initialize.sh index 67fe2f3..1f7a42b 100644 --- a/src/usr/libexec/myautomount/myautomount-initialize.sh +++ b/src/usr/libexec/myautomount/myautomount-initialize.sh @@ -11,17 +11,18 @@ fail() { setupSystem() { _needrestart=0 mkdir -m0755 -p "${MYA_PREFIX}${AUTOMOUNT_DIR}" || fail "Could not setup autofs rules! Check if this is being run as root?" - ! test -f "${MYA_PREFIX}${AUTOMOUNT_FILE}" && { - { touch "${MYA_PREFIX}${AUTOMOUNT_FILE}" && echo "* -fstype=auto,rw,nosuid,uid=${USER},gid=users :/dev/& " > "${MYA_PREFIX}${AUTOMOUNT_FILE}" ; } || fail "Could not setup autofs rules! Check if this is being run as root?" + ! grep -q -e "uid=${AUTOMOUNT_USER}," "${MYA_PREFIX}${AUTOMOUNT_FILE}" 2>/dev/null && { + { touch "${MYA_PREFIX}${AUTOMOUNT_FILE}" && echo "* -fstype=auto,rw,nosuid,uid=${AUTOMOUNT_USER},gid=users :/dev/& " > "${MYA_PREFIX}${AUTOMOUNT_FILE}" ; } || fail "Could not setup autofs rules! Check if this is being run as root?" _needrestart=1 } - ! test -f "${MYA_PREFIX}${AUTOMOUNT_DIR_FILE}" && { + ! grep -q -e "${AUTOMOUNT_BROWSEDIR}" "${MYA_PREFIX}${AUTOMOUNT_DIR_FILE}" 2>/dev/null && { { touch "${MYA_PREFIX}${AUTOMOUNT_DIR_FILE}" && echo "${AUTOMOUNT_BROWSEDIR} ${AUTOMOUNT_FILE} --timeout=5 " > "${MYA_PREFIX}${AUTOMOUNT_DIR_FILE}" ; } || fail "Could not setup autofs rules! Check if this is being run as root?" _needrestart=1 } test ${_needrestart} -eq 1 && test -z "${MYA_SKIP_RESTART}" && eval "service autofs restart" } +export AUTOMOUNT_DAEMON=1 # to suppress the useless error about mktemp: failed to create file . ${MYA_PREFIX}/etc/myautomount.conf setupSystem # must enforce exit 0 because otherwise an already-initialized system will end with test ${_needrestart} -eq 1 as false which will break `make`. diff --git a/src/usr/share/applications/myautomount-trayicon.desktop b/src/usr/share/applications/myautomount-trayicon.desktop index 061454d..5a1dfbb 100644 --- a/src/usr/share/applications/myautomount-trayicon.desktop +++ b/src/usr/share/applications/myautomount-trayicon.desktop @@ -1,6 +1,7 @@ [Desktop Entry] Comment=Tray icon for managing removable media Exec=/usr/bin/myautomount-trayicon +Categories=Utility;TrayIcon; GenericName=Automount helper tray icon Icon=media-removable Keywords=automount; diff --git a/src/usr/share/applications/myautomountd.desktop b/src/usr/share/applications/myautomountd.desktop index 57a147a..037dbe9 100644 --- a/src/usr/share/applications/myautomountd.desktop +++ b/src/usr/share/applications/myautomountd.desktop @@ -1,6 +1,7 @@ [Desktop Entry] Comment=Monitor udevadm for removable media Exec=/usr/bin/myautomountd +Categories=Utility; GenericName=Automount helper daemon Icon=media-removable Keywords=automount; |