1
0
Fork 0
mirror of https://github.com/pygos/init-scripts.git synced 2024-05-08 15:06:14 +02:00
init-scripts/scripts/trymount.sh
David Oberhollenzer 021fa43244 Initial commit
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-11-05 16:11:47 +01:00

8 lines
134 B
Bash

#!/bin/sh
if [ -d "$1" ]; then
if grep -qsE "[[:space:]]+$2$" "/proc/filesystems"; then
mount -n -t "$2" -o "$3" "$2" "$1"
fi
fi