#!/bin/sh
sleep 20

# Create music folder
mkdir /usr/local/etc/mounts/Data

# Create the general mount
mount -t cifs -o nolock,proto=tcp,username=guest,password=guest //10.0.0.1/Data /usr/local/etc/mounts/Data

# Short nap to ensure the mount is up
sleep 5

# /Music
mount -o bind /usr/local/etc/mounts/Data/music /tmp/usbmounts/sda1/Music
%
