7 lines
138 B
Cheetah
7 lines
138 B
Cheetah
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ -d /Applications ] && [ -d /System ]; then
|
||
|
# System is macOS
|
||
|
logg info 'Enabling macOS firewall'
|
||
|
|
||
|
fi
|