19 lines
609 B
Bash
Executable File
19 lines
609 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Define the network name (SSID) of your work network
|
|
WORK_SSID="BELL577" # Replace with your actual work network name
|
|
|
|
# Get the current SSID (Wi-Fi network name)
|
|
# CURRENT_SSID=$(iwgetid -r) # If using iwgetid for Wi-Fi; you can also use nmcli for more flexibility
|
|
|
|
# Alternatively, use nmcli to get the SSID
|
|
CURRENT_SSID=$(nmcli -t -f active,ssid dev wifi | grep '^yes' | cut -d: -f2)
|
|
|
|
# Check if the current SSID matches the work network
|
|
if [ "$CURRENT_SSID" == "$WORK_SSID" ]; then
|
|
exit 0
|
|
else
|
|
echo "Not on the correct network (SSID: $CURRENT_SSID), skipping mount."
|
|
exit 1
|
|
fi
|