changed default postgresql version to 13 to match the defalt version used by the freeswitch package. (#381)

changed py37-fail2ban to py38-fail2ban because the py37-fail2ban package is no longer available.
This commit is contained in:
Richard Allen 2022-02-21 15:07:22 -05:00 committed by GitHub
parent 86caf34713
commit e3d22325bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ switch_tls=true # true or false
# Database Settings # Database Settings
database_enabled=true # true or false database_enabled=true # true or false
database_password=random # random or as a pre-set value database_password=random # random or as a pre-set value
database_version=12 # Postgres 14, 13, 12, 11, 10, 9.6 database_version=13 # Postgres 14, 13, 12, 11, 10, 9.6
database_host=127.0.0.1 # hostname or IP address database_host=127.0.0.1 # hostname or IP address
database_port=5432 # port number database_port=5432 # port number
database_backup=false # true or false database_backup=false # true or false

View File

@ -11,7 +11,7 @@ cd "$(dirname "$0")"
verbose "Installing Fail2ban" verbose "Installing Fail2ban"
#add the dependencies #add the dependencies
pkg install --yes py37-fail2ban pkg install --yes py38-fail2ban
#enable fail2ban service #enable fail2ban service
echo 'fail2ban_enable="YES"' >> /etc/rc.conf echo 'fail2ban_enable="YES"' >> /etc/rc.conf