vp-build/srcpkgs/sv-netmount/files/netmount/run

23 lines
614 B
Bash
Executable File

#!/bin/sh
# Load user defined variables
[ -r conf ] && . ./conf
# Ensure the network manager is running
[ -z "$NETWORK_MANAGER" ] || sv check "$NETWORK_MANAGER" 2> /dev/null || exit 1
# If it's running or not in used - rc.local - discover default gateway
if [ -z "$GATEWAY" ]; then
set -- $(ip route show | grep default)
GATEWAY="$3"
fi
ping -W 1 -c 1 $GATEWAY > /dev/null 2>&1 || exit 1
# Network is up and running so now mount network filesystems from fstab
mount -a -t "$NETWORK_FS" || exit 1
mount -a -O _netdev || exit 1
# Then wait to behave like the service is up
exec chpst -b netmount pause