mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
196933618e
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
80 lines
3.1 KiB
Bash
Executable File
80 lines
3.1 KiB
Bash
Executable File
#!/usr/bin/env ash
|
|
#
|
|
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium>
|
|
#
|
|
# This is free software, licensed under the MIT License.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
function copy_file() {
|
|
local target="${1}"
|
|
local file="${2}"
|
|
local input="${3}"
|
|
local mode="${4}"
|
|
|
|
mv -f "${target}/${file}" "${target}/${file}".bak
|
|
cp -f "${input}/${file}" "${target}/${file}"
|
|
chown SurveillanceStation:SurveillanceStation "${target}/${file}"
|
|
chmod "${mode}" "${target}/${file}"
|
|
}
|
|
|
|
if [ "${1}" = "late" ]; then
|
|
echo "Installing addon sspatch - ${1}"
|
|
mkdir -p "/tmpRoot/usr/arc/addons/"
|
|
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
|
|
|
|
SSPATH="/tmpRoot/var/packages/SurveillanceStation/target"
|
|
INPUTPATH="/usr/arc/addons"
|
|
ADDONSPATH="/tmpRoot/usr/arc/addons"
|
|
if [ -d "${SSPATH}" ]; then
|
|
# Define the hosts entries to be added
|
|
ENTRIES=("0.0.0.0 synosurveillance.synology.com")
|
|
for ENTRY in "${ENTRIES[@]}"
|
|
do
|
|
if [ -f "/tmpRoot/etc/hosts" ]; then
|
|
# Check if the entry is already in the file
|
|
if grep -Fxq "${ENTRY}" /tmpRoot/etc/hosts; then
|
|
echo "Entry ${ENTRY} already exists"
|
|
else
|
|
echo "Entry ${ENTRY} does not exist, adding now"
|
|
echo "${ENTRY}" >> /tmpRoot/etc/hosts
|
|
fi
|
|
fi
|
|
if [ -f "/tmpRoot/etc.defaults/hosts" ]; then
|
|
if grep -Fxq "${ENTRY}" /tmpRoot/etc.defaults/hosts; then
|
|
echo "Entry ${ENTRY} already exists"
|
|
else
|
|
echo "Entry ${ENTRY} does not exist, adding now"
|
|
echo "${ENTRY}" >> /tmpRoot/etc.defaults/hosts
|
|
fi
|
|
fi
|
|
done
|
|
|
|
# Check Sha256sum for Patch
|
|
CHECKSUM=$(sha256sum ${SSPATH}/lib/libssutils.so | cut -d' ' -f1)
|
|
if [ "${CHECKSUM}" == "b0fafefe820aa8ecd577313dff2ae22cf41a6ddf44051f01670c3b92ee04224d" ]; then
|
|
tar -zxf "${INPUTPATH}/sspatch.tgz" -C "${ADDONSPATH}/"
|
|
copy_file ${SSPATH}/lib libssutils.so ${ADDONSPATH} 0644
|
|
copy_file ${SSPATH}/sbin sscmshostd ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin sscored ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssdaemonmonitord ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssexechelperd ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssroutined ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssrtmpclientd ${ADDONSPATH} 0755
|
|
elif [ "${CHECKSUM}" == "92a8c8c75446daa7328a34acc67172e1f9f3af8229558766dbe5804a86c08a5e" ]; then
|
|
tar -zxf "${INPUTPATH}/sspatch-openvino.tgz" -C "${ADDONSPATH}/"
|
|
copy_file ${SSPATH}/lib libssutils.so ${ADDONSPATH} 0644
|
|
copy_file ${SSPATH}/sbin sscmshostd ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin sscored ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssdaemonmonitord ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssexechelperd ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssroutined ${ADDONSPATH} 0755
|
|
copy_file ${SSPATH}/sbin ssrtmpclientd ${ADDONSPATH} 0755
|
|
else
|
|
echo "sspatch: Surveillance Station version not supported"
|
|
fi
|
|
fi
|
|
elif [ "${1}" = "uninstall" ]; then
|
|
echo "Installing addon sspatch - ${1}"
|
|
# To-Do
|
|
fi |