2024-05-05 06:16:56 +07:00
|
|
|
#!/usr/bin/env ash
|
2024-05-30 04:15:18 +07:00
|
|
|
#
|
|
|
|
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the MIT License.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2024-05-05 06:16:56 +07:00
|
|
|
|
|
|
|
if [ "${1}" = "late" ]; then
|
|
|
|
echo "Creating service to exec deduplication"
|
2024-05-30 04:15:18 +07:00
|
|
|
mkdir -p "/tmpRoot/usr/arc/addons/"
|
2024-11-09 01:34:54 +07:00
|
|
|
cp -pf "${0}" "/tmpRoot/usr/arc/addons/"
|
2024-05-05 06:16:56 +07:00
|
|
|
|
2024-11-09 01:34:54 +07:00
|
|
|
cp -pf /usr/bin/deduplication.sh /tmpRoot/usr/bin/deduplication.sh
|
2024-05-30 04:15:18 +07:00
|
|
|
|
|
|
|
mkdir -p "/tmpRoot/usr/lib/systemd/system"
|
2024-05-05 06:16:56 +07:00
|
|
|
DEST="/tmpRoot/usr/lib/systemd/system/deduplication.service"
|
2024-11-20 16:51:12 +07:00
|
|
|
{
|
|
|
|
echo "[Unit]"
|
|
|
|
echo "Description=Enable Deduplication"
|
|
|
|
echo "Wants=smpkg-custom-install.service pkgctl-StorageManager.service"
|
|
|
|
echo "After=smpkg-custom-install.service"
|
|
|
|
echo
|
|
|
|
echo "[Service]"
|
|
|
|
echo "Type=oneshot"
|
|
|
|
echo "RemainAfterExit=yes"
|
|
|
|
echo "ExecStart=/usr/bin/deduplication.sh -s -e --hdd"
|
|
|
|
echo
|
|
|
|
echo "[Install]"
|
|
|
|
echo "WantedBy=multi-user.target"
|
|
|
|
} >"${DEST}"
|
2024-11-09 01:34:54 +07:00
|
|
|
mkdir -p /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
|
2024-05-05 06:16:56 +07:00
|
|
|
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
|