arc-addons/codecpatch/install.sh
AuxXxilium b038874087 tree: fix
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-08-21 18:43:41 +02:00

48 lines
1.5 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.
#
if [ "${1}" = "late" ]; then
echo "Installing addon codecpatch - ${1}"
mkdir -p "/tmpRoot/usr/arc/addons/"
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
cp -vf /usr/bin/codecpatch.sh /tmpRoot/usr/bin/codecpatch.sh
mkdir -p "/tmpRoot/usr/lib/systemd/system"
DEST="/tmpRoot/usr/lib/systemd/system/codecpatch.service"
cat << EOF > ${DEST}
[Unit]
Description=addon codecpatch
After=multi-user.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=-/usr/bin/codecpatch.sh
[Install]
WantedBy=multi-user.target
[X-Synology]
Author=Virtualization Team
EOF
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
ln -vsf /usr/lib/systemd/system/codecpatch.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/codecpatch.service
fi
elif [ "${1}" = "uninstall" ]; then
echo "Installing addon codecpatch - ${1}"
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/codecpatch.service"
rm -f "/tmpRoot/usr/lib/systemd/system/codecpatch.service"
rm -f "/tmpRoot/usr/bin/codecpatch.sh"
[ ! -f "/tmpRoot/usr/arc/revert.sh" ] && echo '#!/usr/bin/env bash' >/tmpRoot/usr/arc/revert.sh && chmod +x /tmpRoot/usr/arc/revert.sh
echo "/usr/bin/codecpatch.sh -r" >>/tmpRoot/usr/arc/revert.sh
echo "rm -f /usr/bin/codecpatch.sh" >>/tmpRoot/usr/arc/revert.sh
fi