Skip to content

Commit 5a10812

Browse files
committed
Fixes for bullseye
1 parent 47cc4de commit 5a10812

File tree

9 files changed

+17
-12
lines changed

9 files changed

+17
-12
lines changed

debian-setup/packages/_resolv_conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare -i RESOLVERS="0"
44
# See resolv.conf(5)
55
declare -i MAXNS="3"
6-
declare -r EXAMPLECOM_IP="93.184.216.34"
6+
declare -r EXAMPLECOM_IP="93.184.215.14"
77

88
Check_resolver()
99
{

debian-setup/packages/mariadb-server

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -x
55
Pkg_install_quiet mariadb-server mariadb-client mariadb-backup
66

77
# Disable the binary log
8-
sed -i -e 's/^log_bin/#&/' /etc/mysql/my.cnf
8+
sed -i -e 's/^log_bin/#&/' /etc/mysql/mariadb.conf.d/50-server.cnf
99

1010
Dinstall mysql/mysql-optimize.sh
1111

mail/courier-config/esmtpd.orig

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ MAXDAEMONS=40
2424
MAXPERC=5
2525
MAXPERIP=5
2626
PIDFILE=/run/courier/esmtpd.pid
27-
TCPDOPTS="-stderrlogger=/usr/sbin/courierlogger"
27+
TCPDOPTS="-stderrlogger=/usr/sbin/courierlogger -noidentlookup"
2828
ESMTPAUTH=""
2929
ESMTPAUTH_WEBADMIN="LOGIN CRAM-MD5 CRAM-SHA1 CRAM-SHA256"
3030
ESMTPAUTH_TLS=""

monitoring/monit/services/gamin

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
depends on gamin_bin
66
depends on gamin_rc
77

8-
check file gamin_bin with path /usr/lib/gamin/gam_server
8+
check file gamin_bin with path /usr/libexec/gam_server
99
group system
1010
include /etc/monit/templates/rootbin
1111
if does not exist then unmonitor

monitoring/monit/services/mysql-server

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
check process mysqld with pidfile /run/mysqld/mysqld.pid
33
group database
44
group mysql
5-
start program = "/usr/sbin/service mysql start"
6-
stop program = "/usr/sbin/service mysql stop"
7-
restart program = "/usr/sbin/service mysql restart"
5+
start program = "/usr/sbin/service mariadb start"
6+
stop program = "/usr/sbin/service mariadb stop"
7+
restart program = "/usr/sbin/service mariadb restart"
88
if failed host localhost port 3306 protocol mysql username "@@MYSQL_USER@@" password "@@MYSQL_PASS@@"
99
with timeout 2 seconds for 3 times within 4 cycles then restart
1010
if failed unixsocket /run/mysqld/mysqld.sock protocol mysql username "@@MYSQL_USER@@" password "@@MYSQL_PASS@@"
@@ -17,6 +17,6 @@
1717
group mysql
1818
include /etc/monit/templates/rootbin
1919

20-
check file mysqld_init with path /etc/init.d/mysql
20+
check file mysqld_init with path /etc/init.d/mariadb
2121
group mysql
2222
include /etc/monit/templates/rootbin

package/apt-sources/szepeviktor.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Modern webserver
22
deb [arch=amd64] http://szepeviktor.github.io/debian/ bullseye main
3-
#K: apt-key adv --keyserver keys.openpgp.org --recv-keys 6AA0453C451A4FBA
3+
#K: wget -qO/etc/apt/trusted.gpg.d/szepeviktor.gpg https://szepeviktor.github.io/szepeviktor.gpg
44
#M: https://github.com/szepeviktor/szepeviktor.github.io

security/myattackers-ipsets/ipset/datacamp.ipset

+5-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ add datacamp 185.240.120.0/23
2626
add datacamp 193.150.70.0/24
2727
add datacamp 193.218.190.0/24
2828

29-
# AS206092 - IPXO / SECFIREWALL
29+
# AS206092 - IPXO / SECFIREWALL / Internet Utilities Europe and Asia
3030
add datacamp 37.140.223.0/24
31+
# LAYERSWITCH
32+
add datacamp 37.140.254.0/24
3133
# Legaco, Panq
3234
add datacamp 45.86.200.0/24
3335
add datacamp 45.92.229.0/24
@@ -41,7 +43,6 @@ add datacamp 172.98.32.0/24
4143
#add datacamp 185.251.19.0/24
4244
add datacamp 188.212.135.0/24
4345
# US-HEAPPLAYER
44-
add datacamp 192.109.205.0/24
4546
add datacamp 193.36.224.0/24
4647
add datacamp 194.169.217.0/24
4748
# EXTERNAL
@@ -52,6 +53,8 @@ add datacamp 104.234.53.0/24
5253
add datacamp 216.73.160.0/23
5354
# US-NYC
5455
add datacamp 45.8.19.0/24
56+
# VPN Consumer Washington DC
57+
add datacamp 136.144.42.0/24
5558

5659
add datacamp 166.1.12.0/24
5760
add datacamp 191.101.41.0/24

webserver/php-fpm.sh

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ CWD="$(dirname "${BASH_SOURCE[0]}")"
2525

2626
# Later versions of Ondřej Surý's PHP-FPM "Depends: systemd | systemd-tmpfiles"
2727
Pkg_install_quiet systemd-standalone-tmpfiles/bullseye-backports
28+
# Alternative
29+
#Pkg_install_quiet opentmpfiles
2830

2931
# @nonDebian
3032
Pkg_install_quiet "php${PHP}-fpm" libpcre3 \

0 commit comments

Comments
 (0)