#!/bin/bash # Configuration SERVER_IP="192.168.0.198" MOUNT_BASE="/mnt/samba" CONFIG_FILE="samba_mounts.conf" CREDENTIALS_FILE="/etc/samba/credentials" OPTIONS="soft,iocharset=utf8,uid=1000,gid=1000" # Check if the configuration file exists if [ ! -f "$CONFIG_FILE" ]; then echo "Configuration file $CONFIG_FILE not found!" exit 1 fi # Read each line from the configuration file while IFS= read -r DIR; do # Skip empty lines [ -z "$DIR" ] && continue
# Create the local mount point directory if it doesn't exist LOCAL_MOUNT_POINT="$MOUNT_BASE/$DIR" mkdir -p "$LOCAL_MOUNT_POINT"
# Mount the directory sudo mount -t cifs "//$SERVER_IP/$DIR" "$LOCAL_MOUNT_POINT" -o "credentials=$CREDENTIALS_FILE,$OPTIONS"
# Check if the mount was successful if [ $? -eq 0 ]; then echo "Mounted //$SERVER_IP/$DIR to $LOCAL_MOUNT_POINT" else echo "Failed to mount //$SERVER_IP/$DIR" fi done < "$CONFIG_FILE"
# Check if the configuration file exists if [ ! -f "$CONFIG_FILE" ]; then echo"Configuration file $CONFIG_FILE not found!" exit 1 fi
# Read each line from the configuration file while IFS= read -r DIR; do # Skip empty lines [ -z "$DIR" ] && continue
# Define the local mount point directory LOCAL_MOUNT_POINT="$MOUNT_BASE/$DIR"
# Unmount the directory sudo umount -l "$LOCAL_MOUNT_POINT"
# Check if the unmount was successful if [ $? -eq 0 ]; then echo"Unmounted $LOCAL_MOUNT_POINT" else echo"Failed to unmount $LOCAL_MOUNT_POINT" fi done < "$CONFIG_FILE"