mirror of
https://github.com/dokku/dokku.git
synced 2025-12-15 19:47:42 +01:00
fix: correct issues in linting
This commit is contained in:
@@ -20,7 +20,7 @@ See the [0.36.0 migration guide](/docs/appendices/0.36.0-migration-guide.md) for
|
||||
|
||||
- #7579: @josegonzalez Stop all app containers when calling ps:stop
|
||||
- #7820: @josegonzalez Ignore brew doctor warnings when releasing Dokku as a homebrew formula
|
||||
- #7811: @slava-sh Fix issue deploying from a tar file
|
||||
- #7811: @slava-sh Fix issue deploying from a tar file
|
||||
- #7781: @josegonzalez Update gitignore to remove compiled triggers from repo
|
||||
|
||||
### New Features
|
||||
|
||||
@@ -355,7 +355,7 @@ function checkFirewall {
|
||||
elif [[ $OS == "CentOS Linux" ]] || [[ $OS == "CentOS Stream" ]] || [[ $OS == "Rocky Linux" ]] || [[ $OS == "AlmaLinux" ]]; then
|
||||
if [ -f /usr/lib/systemd/system/csf.service ]; then
|
||||
fw="csf"
|
||||
if [[ $(systemctl status $fw >/dev/null 2>&1) ]]; then
|
||||
if systemctl status $fw >/dev/null 2>&1; then
|
||||
|
||||
FW_VER="\e[32m[PASS]\e[0m Firewall service (${fw}) is active\n"
|
||||
((PASS++))
|
||||
|
||||
Reference in New Issue
Block a user