mirror of
https://github.com/joomla-docker/docker-joomla.git
synced 2025-01-10 00:27:51 +00:00
Moves user check into Apache usecase.
This commit is contained in:
parent
6b42540f50
commit
66e04002a2
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
@ -18,6 +18,20 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
@ -28,19 +42,6 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user