8 lines
182 B
Bash
8 lines
182 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
if [[ "${KOLLA_BASE_DISTRO}" == "ubuntu" || \
|
||
|
"${KOLLA_BASE_DISTRO}" == "debian" ]]; then
|
||
|
# Loading Apache2 ENV variables
|
||
|
source /etc/apache2/envvars
|
||
|
fi
|