Fixed fail2ban issue
This commit is contained in:
parent
547e40b6b6
commit
55d98b00b3
1 changed files with 8 additions and 8 deletions
|
@ -21,7 +21,7 @@
|
||||||
logg info 'Configuring fail2ban'
|
logg info 'Configuring fail2ban'
|
||||||
|
|
||||||
### Restart fail2ban
|
### Restart fail2ban
|
||||||
function restartFail2Ban() {
|
function restartFailToBan() {
|
||||||
if [ -d /Applications ] && [ -d /System ]; then
|
if [ -d /Applications ] && [ -d /System ]; then
|
||||||
# macOS
|
# macOS
|
||||||
logg info 'Enabling the fail2ban Homebrew service'
|
logg info 'Enabling the fail2ban Homebrew service'
|
||||||
|
@ -41,17 +41,17 @@ if [[ ! "$(test -d /proc && grep Microsoft /proc/version > /dev/null)" ]]; then
|
||||||
if [ -d /etc/fail2ban ]; then
|
if [ -d /etc/fail2ban ]; then
|
||||||
logg info 'Copying ~/.ssh/fail2ban/jail.local to /etc/fail2ban/jail.local'
|
logg info 'Copying ~/.ssh/fail2ban/jail.local to /etc/fail2ban/jail.local'
|
||||||
sudo cp -f "$HOME/.ssh/fail2ban/jail.local" /etc/fail2ban/jail.local
|
sudo cp -f "$HOME/.ssh/fail2ban/jail.local" /etc/fail2ban/jail.local
|
||||||
restartFail2Ban
|
restartFailToBan
|
||||||
elif [ -d /usr/local/etc/fail2ban ]; then
|
elif [ -d /usr/local/etc/fail2ban ]; then
|
||||||
logg info 'Copying ~/.ssh/fail2ban/jail.local to /usr/local/etc/fail2ban/jail.local'
|
logg info 'Copying ~/.ssh/fail2ban/jail.local to /usr/local/etc/fail2ban/jail.local'
|
||||||
sudo cp -f "$HOME/.ssh/fail2ban/jail.local" /usr/local/etc/fail2ban/jail.local
|
sudo cp -f "$HOME/.ssh/fail2ban/jail.local" /usr/local/etc/fail2ban/jail.local
|
||||||
restartFail2Ban
|
restartFailToBan
|
||||||
elif [ -d "$HOMEBREW_PREFIX/etc/fail2ban" ]; then
|
elif [ -d "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/fail2ban" ]; then
|
||||||
logg info "Copying ~/.ssh/fail2ban/jail.local to $HOMEBREW_PREFIX/etc/fail2ban/jail.local"
|
logg info "Copying ~/.ssh/fail2ban/jail.local to ${HOMEBREW_PREFIX:-/opt/homebrew}/etc/fail2ban/jail.local"
|
||||||
sudo cp -f "$HOME/.ssh/fail2ban/jail.local" "$HOMEBREW_PREFIX/etc/fail2ban/jail.local"
|
sudo cp -f "$HOME/.ssh/fail2ban/jail.local" "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/fail2ban/jail.local"
|
||||||
restartFail2Ban
|
restartFailToBan
|
||||||
else
|
else
|
||||||
logg warn 'Both the /etc/fail2ban (Linux) and the /usr/local/etc/fail2ban (macOS) folder do not exist'
|
logg warn 'The /etc/fail2ban (Linux), the /usr/local/etc/fail2ban, and the ${HOMEBREW_PREFIX:-/opt/homebrew}/etc/fail2ban (macOS) folder do not exist'
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
logg info 'Skipping sshd_config application since environment is WSL'
|
logg info 'Skipping sshd_config application since environment is WSL'
|
||||||
|
|
Loading…
Reference in a new issue