| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/wwwconfig-common/ |
Upload File : |
# File: apache.func
# Changes:
# 20010219 Ola Lundqvist <opal@debian.org>
# 20010222 Ola Lundqvist <opal@debian.org>
# 20010430 Ola Lundqvist <opal@debian.org>
# Removed bash specific dependency.
# 20011022 Luca De Vitis <luca@debian.org>
# Added set -e.
# 20020312 Ola Lundqvist <opal@debian.org>
# Fixed getwwwoption get using suggestions from
# root@langhorst.com.
# Description: Functions for apache query or manipulation.
set -e
# Function: getwwwoption
# Author: Ola Lundqvist <opal@debian.org>
# Date: 20010219, 20010222
# Description: Get the value of a apache config option.
# Parameters: 1 - The option to query for.
# 2 - a config file to query.
# Needs: The file that parameter two points to. (else it hangs)
# Sets: $getwwwoption = the option value.
getwwwoption() {
getwwwoption=""
if [ -f $2 ] ; then
if grep $1 $2 | grep -v "#" > /dev/null 2>&1 ; then
getwwwoption=$(sed -ne "/^[[:space:]]*$1[[:space:]]\+/ s|[[:space:]]*$1[[:space:]]\+\([^[:space:]]\+\)[[:space:]]*$|\1|pg;" < $2)
fi
fi
}