mirror of
https://github.com/pygos/init.git
synced 2024-11-05 12:17:10 +01:00
a3437967a2
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
7 lines
134 B
Bash
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
|