sspatch: add sanity check

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium 2024-11-03 13:51:40 +01:00
parent 083097737a
commit efb4f03d47
4 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ function copy_file() {
local file="${2}" local file="${2}"
local input="${3}" local input="${3}"
local mode="${4}" local mode="${4}"
if [ -f "${input}/${file}" ]; then if [ -f "${input}/${file}" ] && [ -f "${target}/${file}" ]; then
echo "sspatch: Copying ${file} to ${target}" echo "sspatch: Copying ${file} to ${target}"
cp -vf "${input}/${file}" "${target}/${file}" cp -vf "${input}/${file}" "${target}/${file}"
chown SurveillanceStation:SurveillanceStation "${target}/${file}" chown SurveillanceStation:SurveillanceStation "${target}/${file}"
@ -82,7 +82,7 @@ if [ -d "${SSPATH}" ]; then
copy_file ${SSPATH}/sbin ssexechelperd ${PATCHPATHSS} 0755 copy_file ${SSPATH}/sbin ssexechelperd ${PATCHPATHSS} 0755
copy_file ${SSPATH}/sbin ssroutined ${PATCHPATHSS} 0755 copy_file ${SSPATH}/sbin ssroutined ${PATCHPATHSS} 0755
copy_file ${SSPATH}/sbin ssmessaged ${PATCHPATHSS} 0755 copy_file ${SSPATH}/sbin ssmessaged ${PATCHPATHSS} 0755
copy_file ${SSPATH}/sbin ssrtmpclientd ${PATCHPATHSS} 0755 # copy_file ${SSPATH}/sbin ssrtmpclientd ${PATCHPATHSS} 0755
fi fi
sleep 5 sleep 5

Binary file not shown.

Binary file not shown.