nnn/plugins/nmount

89 lines
3.5 KiB
Text
Raw Permalink Normal View History

#!/usr/bin/env sh
# Description: Toggle mount status of a device using pmount
2019-04-25 22:08:38 +05:30
# If the device is not mounted, it will be mounted.
# If the device is mounted, it will be unmounted and powered down.
#
2023-07-08 19:55:07 -04:00
# Dependencies: lsblk, pmount (optional), udisks2
2019-06-05 17:06:20 +05:30
#
2021-05-15 23:02:01 +05:30
# Usage: Runs `lsblk` on 'l', exits on 'Return`.
#
# Notes:
# - The script uses Linux-specific lsblk to list block devices. Alternatives:
2019-05-26 16:52:00 +05:30
# macOS: "diskutil list"
# BSD: "geom disk list"
2021-05-15 23:02:01 +05:30
# - The script uses udisksctl (from udisks2) to power down devices. This is also Linux-specific.
2023-07-08 19:55:07 -04:00
# Users on non-Linux platforms can comment it and use an alternative to power-down disks.
2019-05-26 16:52:00 +05:30
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
2021-05-30 23:29:10 +05:30
prompt="device name [e.g. sdXn] ('l'ist, 'q'uit): "
2019-06-05 17:06:20 +05:30
lsblk
2019-05-26 16:52:00 +05:30
2019-11-24 01:54:06 +05:30
printf "\nEnsure you aren't still in the mounted device.\n"
2019-11-22 02:14:25 +05:30
printf "%s" "$prompt"
read -r dev
2019-04-21 12:14:03 +05:30
while [ -n "$dev" ]; do
2019-06-05 17:06:20 +05:30
if [ "$dev" = "l" ]; then
lsblk
2019-06-10 19:47:00 +05:30
elif [ "$dev" = "q" ]; then
exit
2019-06-05 17:06:20 +05:30
else
# LUKS volumes mounted with udisksctl appear differently than with pmount
if grep -qs "$dev " /proc/mounts || [ -n "$(lsblk -n "/dev/$dev" -o MOUNTPOINT)" ]; then
sync "$(lsblk -n "/dev/$dev" -o MOUNTPOINT | sed "/^$/d")"
2023-07-08 19:55:07 -04:00
if type pumount >/dev/null 2>&1; then
pumount "/dev/$dev"
exit_code="$?"
else
# Unlike pmount, udisksctl does not transparently handle LUKS volumes
# We need to manually get the unlocked device, unmount it, and then lock the volume
if lsblk -n "/dev/$dev" -o FSTYPE | grep "crypto_LUKS" >/dev/null; then
dev_map="$(udisksctl info -b /dev/"$dev" | grep "CleartextDevice" | grep -o "dm_2d[[:digit:]]*" | sed "s/_2d/-/")"
udisksctl unmount -b "/dev/$dev_map" --no-user-interaction >/dev/null
exit_code="$?"
udisksctl lock -b "/dev/$dev" --no-user-interaction >/dev/null
else
udisksctl unmount -b "/dev/$dev" --no-user-interaction >/dev/null
exit_code="$?"
fi
2023-07-08 19:55:07 -04:00
fi
if [ $exit_code -eq 0 ]; then
echo "/dev/$dev unmounted."
if udisksctl power-off -b "/dev/$dev" --no-user-interaction; then
echo "/dev/$dev ejected."
2019-06-05 17:06:20 +05:30
fi
2019-05-05 23:05:46 +05:30
fi
elif [ -b "/dev/$dev" ]; then
2023-07-08 19:55:07 -04:00
if type pmount >/dev/null 2>&1; then
pmount "/dev/$dev"
exit_code="$?"
else
# Unlike pmount, udisksctl does not transparently handle LUKS volumes
# We need to manually get the unlocked device and mount that instead of the volume itself
if [ "$(lsblk "/dev/$dev" -n -o FSTYPE)" = "crypto_LUKS" ]; then
dev_map=$(udisksctl unlock -b "/dev/$dev" --no-user-interaction | grep -o "dm-[[:digit:]]*")
udisksctl mount -b "/dev/$dev_map" --no-user-interaction >/dev/null
exit_code="$?"
else
udisksctl mount -b "/dev/$dev" --no-user-interaction >/dev/null
exit_code="$?"
fi
2023-07-08 19:55:07 -04:00
fi
if [ $exit_code -eq 0 ]; then
sleep 1
echo "/dev/$dev mounted to $(lsblk -n "/dev/$dev" -o MOUNTPOINT | sed "/^$/d")."
fi
2019-06-05 17:06:20 +05:30
else
echo "/dev/$dev does not exist or is not a block device."
2019-05-05 23:05:46 +05:30
fi
2019-04-25 22:08:38 +05:30
fi
2019-05-05 23:05:46 +05:30
echo
2019-11-22 02:14:25 +05:30
printf "%s" "$prompt"
read -r dev
2019-05-05 23:05:46 +05:30
done