This module is designed for the use in test suites and large
networks which have to deal with different httpd versions and
different configurations. It provides a new container --
See below for further possibilities.
The major[.minor[.patch]]
, e.g.
2.1.0
or 2.2
. minor and
patch are optional. If these numbers are omitted, they are
assumed to be zero. The following numerical operators are
possible:
operator | description |
---|---|
= or == |
httpd version is equal |
> |
httpd version is greater than |
>= |
httpd version is greater or equal |
< |
httpd version is less than |
<= |
httpd version is less or equal |
Besides the numerical comparison it is possible to match a
operator | description |
---|---|
= or == |
version has the form
/regex/ |
~ |
version has the form
regex |
In order to reverse the meaning, all operators can be preceded by an
exclamation mark (!
):
If the operator is omitted, it is assumed to be
=
.