mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
24 lines
495 B
Bash
24 lines
495 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
source "${EJABBERD_HOME}/scripts/lib/base_config.sh"
|
||
|
source "${EJABBERD_HOME}/scripts/lib/config.sh"
|
||
|
source "${EJABBERD_HOME}/scripts/lib/base_functions.sh"
|
||
|
source "${EJABBERD_HOME}/scripts/lib/functions.sh"
|
||
|
|
||
|
|
||
|
readonly whoami=$(whoami)
|
||
|
|
||
|
|
||
|
change_ejabberd_run_user() {
|
||
|
echo "Change ejabberd install user to root..."
|
||
|
sed -i "s/INSTALLUSER=${EJABBERD_USER}/INSTALLUSER=${whoami}/" ${EJABBERDCTL}
|
||
|
}
|
||
|
|
||
|
|
||
|
[[ "${whoami}" == "root" ]] \
|
||
|
&& change_ejabberd_run_user
|
||
|
|
||
|
|
||
|
exit 0
|