Merge pull request #254 from weiss/replace-bashism

Replace bash-specific syntax in ejabberdctl
This commit is contained in:
Evgeny Khramtsov 2014-07-20 19:20:00 +04:00
commit c068712373
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ else
fi
# define ejabberd environment parameters
if [ "$EJABBERD_CONFIG_PATH" != "${EJABBERD_CONFIG_PATH/.yml/}" ] ; then
if [ "$EJABBERD_CONFIG_PATH" != "${EJABBERD_CONFIG_PATH%.yml}" ] ; then
rate=$(grep log_rate_limit $EJABBERD_CONFIG_PATH | cut -d':' -f2 | sed 's/ *//')
rotate=$(grep log_rotate_size $EJABBERD_CONFIG_PATH | cut -d':' -f2 | sed 's/ *//')
count=$(grep log_rotate_count $EJABBERD_CONFIG_PATH | cut -d':' -f2 | sed 's/ *//')