Browse Source

new solution to prevent symlink from being created when not required

If the gamelogdir is within the logdir then no symlink is created.
pull/1477/head
Daniel Gibbs 8 years ago
parent
commit
aae6c321cc
  1. 7
      lgsm/functions/install_logs.sh

7
lgsm/functions/install_logs.sh

@ -30,9 +30,12 @@ if [ -n "${gamelogdir}" ]&&[ ! -d "${gamelogdir}" ]; then
mkdir -pv "${gamelogdir}"
fi
# Symlink gamelogdir to lgsm logs if variable exists
# Symlink to gamelogdir
# unless gamelogdir is within logdir
# e.g serverfiles/log is not within log/: symlink created
# log/server is in log/: symlink not created
if [ -n "${gamelogdir}" ]; then
if [ ! -h "${logdir}/server" ]; then
if [ "${gamelogdir:0:${#logdir}}" != "${logdir}" ];then
ln -nfsv "${gamelogdir}" "${logdir}/server"
fi
fi

Loading…
Cancel
Save