File tree 6 files changed +30
-3
lines changed
monitoring/monit/services
webserver/apache-sites-available
6 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ rm -rf /var/lib/clamav /var/log/clamav
167
167
rm -rf /etc/console-setup
168
168
169
169
# Packages used on top of SETUP_PACKAGES
170
- Pkg_install_quiet ssh sudo dirmngr
170
+ Pkg_install_quiet ssh sudo dirmngr zstd
171
171
172
172
# Install SHYAML (config reader)
173
173
Pkg_install_quiet python3-yaml
Original file line number Diff line number Diff line change @@ -224,6 +224,14 @@ elif Data get-values-0 package.apt.extra | grep -z -F -x 'php7.4-fpm'; then
224
224
PHP=" 7.4"
225
225
elif Data get-values-0 package.apt.extra | grep -z -F -x ' php8.0-fpm' ; then
226
226
PHP=" 8.0"
227
+ elif Data get-values-0 package.apt.extra | grep -z -F -x ' php8.1-fpm' ; then
228
+ PHP=" 8.1"
229
+ elif Data get-values-0 package.apt.extra | grep -z -F -x ' php8.2-fpm' ; then
230
+ PHP=" 8.2"
231
+ elif Data get-values-0 package.apt.extra | grep -z -F -x ' php8.3-fpm' ; then
232
+ PHP=" 8.3"
233
+ elif Data get-values-0 package.apt.extra | grep -z -F -x ' php8.4-fpm' ; then
234
+ PHP=" 8.4"
227
235
fi
228
236
if [ -n " $PHP " ]; then
229
237
export PHP
Original file line number Diff line number Diff line change 1
1
if ! [ -x /usr/local/bin/testgam ]; then
2
- echo "WARNING: Please install testgam from debian-server-tools/mail/gamin_*_amd64/testgam" 2>&1
3
- echo "cp -v /usr/local/src/debian-server-tools/mail/gamin_0.1.10-4.1.bin/testgam /usr/local/bin/" 2>&1
2
+ echo "WARNING: Installing testgam from debian-server-tools/mail/gamin_*_amd64/testgam" 2>&1
3
+ echo "Can be built from gamin package" 2>&1
4
+ cp -v /usr/local/src/debian-server-tools/mail/gamin_0.1.10-4.1.bin/testgam /usr/local/bin/
4
5
fi
Original file line number Diff line number Diff line change 2
2
3
3
loglevel = NOTICE
4
4
5
+ allowipv6 = yes
6
+
5
7
dbpurgeage = 648000
6
8
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ #
3
+ # Display chrony statistics in a tabular form.
4
+ #
5
+ # VERSION :1.0.0
6
+ # DATE :2025-03-08
7
+ # AUTHOR :Viktor Szépe <[email protected] >
8
+ # URL :https://github.com/szepeviktor/debian-server-tools
9
+ # LICENSE :The MIT License (MIT)
10
+ # BASH-VERSION :4.2+
11
+ # LOCATION :/usr/local/bin/chrony-stats.sh
12
+
13
+ grep --invert-match --line-regexp ' =\+' /var/log/chrony/statistics.log \
14
+ | sed -e ' s#^\s*Date.*#Date Time IP_Address Std_dev Est_offset Offset_sd Diff_freq Est_skew Stress Ns Bs Nr Asym#' \
15
+ | column --table
Original file line number Diff line number Diff line change 182
182
Include conf-available/wordpress.inc.conf
183
183
184
184
# Site specific
185
+ #Alias "/storage/" "/home/${SITE_USER}/website/code/storage/app/public/"
185
186
# Rewrite order: DirectoryMatch -> .htaccess -> Directory
186
187
<DirectoryMatch "${DOCUMENT_ROOT}">
187
188
#AllowOverride None
You can’t perform that action at this time.
0 commit comments