func/core/pkg_firewalld/10-firewalld-check-rule.sh

9 lines
262 B
Bash
Raw Normal View History

2024-08-15 03:52:26 +00:00
#!/bin/bash
r_log "firewalld" "Check that the default zone is public"
firewall-cmd --get-active-zones | grep -q public
r_checkExitStatus $?
r_log "firewalld" "Check that a default service is open"
firewall-cmd --list-services | grep -q ssh
r_checkExitStatus $?