1
0
Fork 0
mirror of https://github.com/pygos/init.git synced 2024-09-27 16:49:50 +02:00
init/scripts/trymount.sh
David Oberhollenzer a3437967a2 Rely on PATH variable for running init programs
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-04-12 12:51:33 +02:00

7 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