arc-addons/deduplication/install.sh
AuxXxilium 49991224b6 init: addons
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-05-05 01:16:56 +02:00

31 lines
1.8 KiB
Bash
Executable File

#!/usr/bin/env ash
if [ "${1}" = "late" ]; then
echo "Creating service to exec deduplication"
cp -vf /usr/bin/deduplication.sh /tmpRoot/usr/bin/deduplication.sh
DEST="/tmpRoot/usr/lib/systemd/system/deduplication.service"
echo "[Unit]" >${DEST}
echo "Description=Enable Deduplication" >>${DEST}
echo >>${DEST}
echo "[Service]" >>${DEST}
echo "Type=oneshot" >>${DEST}
echo "RemainAfterExit=yes" >>${DEST}
echo "ExecStart=/usr/bin/deduplication.sh --tiny --hdd" >>${DEST}
echo >>${DEST}
echo "[Install]" >>${DEST}
echo "WantedBy=multi-user.target" >>${DEST}
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
ln -vsf /usr/lib/systemd/system/deduplication.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/deduplication.service
elif [ "${1}" = "uninstall" ]; then
echo "Installing addon deduplication - ${1}"
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/deduplication.service"
rm -f "/tmpRoot/usr/lib/systemd/system/deduplication.service"
[ ! -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/deduplication.sh --restore" >>/tmpRoot/usr/arc/revert.sh
echo "rm -f /usr/bin/deduplication.sh" >>/tmpRoot/usr/arc/revert.sh
fi