From bb4aa69646b2678385a8aadf820820f417ee29a8 Mon Sep 17 00:00:00 2001 From: Poil Date: Sun, 25 Jan 2015 22:35:45 +0100 Subject: [PATCH] No error when links already exist --- functions/fn_check_logs | 8 ++++---- functions/fn_install_logs | 8 ++++---- functions/fn_loginstall | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/functions/fn_check_logs b/functions/fn_check_logs index 05c101f73..07d08bc5f 100644 --- a/functions/fn_check_logs +++ b/functions/fn_check_logs @@ -17,7 +17,7 @@ touch "${consolelog}" # If a server is source or goldsource create a symbolic link to the game server logs if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then if [ ! -h "${rootdir}/log/server" ]; then - ln -sv "${gamelogdir}" "${rootdir}/log/server" + ln -nfsv "${gamelogdir}" "${rootdir}/log/server" else echo "Symbolic link ${gamelogdir} => ${rootdir}/log/server already exists!" fi @@ -28,15 +28,15 @@ if [ "${engine}" == "unreal2" ]||[ "${engine}" == "unity3d" ]; then fi if [ "${gamename}" == "7 Days To Die" ]; then if [ ! -h "${gamelogdir}/output_log.txt" ]; then - ln -sv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt" + ln -nfsv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt" fi fi # If server uses SteamCMD create a symbolic link to the Steam logs if [ -d "${rootdir}/Steam/logs" ]; then if [ ! -h "${rootdir}/log/steamcmd" ]; then - ln -sv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd" + ln -nfsv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd" else echo "Symbolic link ${rootdir}/Steam/logs => ${rootdir}/log/steamcmd already exists!" fi fi -sleep 1 \ No newline at end of file +sleep 1 diff --git a/functions/fn_install_logs b/functions/fn_install_logs index 05c101f73..07d08bc5f 100644 --- a/functions/fn_install_logs +++ b/functions/fn_install_logs @@ -17,7 +17,7 @@ touch "${consolelog}" # If a server is source or goldsource create a symbolic link to the game server logs if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then if [ ! -h "${rootdir}/log/server" ]; then - ln -sv "${gamelogdir}" "${rootdir}/log/server" + ln -nfsv "${gamelogdir}" "${rootdir}/log/server" else echo "Symbolic link ${gamelogdir} => ${rootdir}/log/server already exists!" fi @@ -28,15 +28,15 @@ if [ "${engine}" == "unreal2" ]||[ "${engine}" == "unity3d" ]; then fi if [ "${gamename}" == "7 Days To Die" ]; then if [ ! -h "${gamelogdir}/output_log.txt" ]; then - ln -sv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt" + ln -nfsv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt" fi fi # If server uses SteamCMD create a symbolic link to the Steam logs if [ -d "${rootdir}/Steam/logs" ]; then if [ ! -h "${rootdir}/log/steamcmd" ]; then - ln -sv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd" + ln -nfsv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd" else echo "Symbolic link ${rootdir}/Steam/logs => ${rootdir}/log/steamcmd already exists!" fi fi -sleep 1 \ No newline at end of file +sleep 1 diff --git a/functions/fn_loginstall b/functions/fn_loginstall index 3920b8120..dc6fb8654 100644 --- a/functions/fn_loginstall +++ b/functions/fn_loginstall @@ -17,7 +17,7 @@ touch "${consolelog}" # If a server is source or goldsource create a symbolic link to the game server logs if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then if [ ! -h "${rootdir}/log/server" ]; then - ln -sv "${gamelogdir}" "${rootdir}/log/server" + ln -nfsv "${gamelogdir}" "${rootdir}/log/server" else echo "Symbolic link ${gamelogdir} => ${rootdir}/log/server already exists!" fi @@ -28,15 +28,15 @@ if [ "${engine}" == "unreal2" ]||[ "${engine}" == "unity3d" ]; then fi if [ "${gamename}" == "7 Days To Die" ]; then if [ ! -h "${gamelogdir}/output_log.txt" ]; then - ln -sv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt" + ln -nfsv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt" fi fi # If server uses SteamCMD create a symbolic link to the Steam logs if [ -d "${rootdir}/Steam/logs" ]; then if [ ! -h "${rootdir}/log/steamcmd" ]; then - ln -sv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd" + ln -nfsv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd" else echo "Symbolic link ${rootdir}/Steam/logs => ${rootdir}/log/steamcmd already exists!" fi fi -sleep 1 \ No newline at end of file +sleep 1