Release 22.01 #142

Merged
jlecour merged 189 commits from unstable into stable 2022-01-25 18:30:09 +01:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit d3eef71127 - Show all commits

View file

@ -31,7 +31,8 @@ The **patch** part changes is incremented if multiple releases happen the same m
* evolinux-base: fix alert5.service dependency syntax
* mysql : Create a default ~root/.my.cnf for compatibility reasons
* nginx : fix variable name and debug to actually use nginx-light
* packweb-apache : Support php 8.0
* packweb-apache : Support php 8.0
* nagios-nrpe: Fix check\_nfsserver for buster and bullseye
### Removed

View file

@ -1,12 +1,12 @@
#!/bin/sh
# Check if nfs server is running using rpcinfo
rpcinfo -u localhost nfs
rpcinfo -T udp localhost nfs 3
if [ $? -ne 0 ]; then
exit 2
fi
rpcinfo -t localhost nfs
rpcinfo -T tcp localhost nfs
if [ $? -ne 0 ]; then
exit 2
fi