2021-10-11 15:51:16 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
|
|
|
|
|
if [[ ${EUID} -ne 0 ]]; then
|
|
|
|
|
echo "This script should be run as root." > /dev/stderr
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
|
|
|
echo "No arguments supplied"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ "$1" == "--check" ]]; then
|
|
|
|
|
echo "OK"
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
host_path="$1"
|
|
|
|
|
|
|
|
|
|
# mount units must be named after the mount point directories they control
|
|
|
|
|
mount_filename=$(systemd-escape -p --suffix=mount "$host_path")
|
|
|
|
|
mount_file="/etc/systemd/system/${mount_filename}"
|
|
|
|
|
|
2024-09-09 16:44:19 +02:00
|
|
|
# stop and start will do the remount
|
2021-10-11 15:51:16 +02:00
|
|
|
systemctl stop "${mount_filename}"
|
|
|
|
|
systemctl start "${mount_filename}"
|
|
|
|
|
|
|
|
|
|
echo "Remount succeeded"
|