From 5e36906379235ead96eacf3a1ca47ff2eca2672e Mon Sep 17 00:00:00 2001 From: AuxXxilium Date: Fri, 28 Jun 2024 21:58:06 +0200 Subject: [PATCH] amepatch: add cleanup code Signed-off-by: AuxXxilium --- amepatch/install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/amepatch/install.sh b/amepatch/install.sh index c0424c7..ceee1b1 100755 --- a/amepatch/install.sh +++ b/amepatch/install.sh @@ -33,12 +33,17 @@ WantedBy=multi-user.target EOF mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants ln -vsf /usr/lib/systemd/system/amepatch.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/amepatch.service - fi + + # Cleanup codecpatch + [ -f "/tmpRoot/usr/bin/codecpatch.sh" ] && rm -f "/tmpRoot/usr/bin/codecpatch.sh" + [ -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/codecpatch.service" ] && rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/codecpatch.service" + [ -f "/tmpRoot/usr/lib/systemd/system/codecpatch.service" ] && rm -f "/tmpRoot/usr/lib/systemd/system/codecpatch.service" elif [ "${1}" = "uninstall" ]; then echo "Installing addon amepatch - ${1}" rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/amepatch.service" rm -f "/tmpRoot/usr/lib/systemd/system/amepatch.service" + rm -f "/tmpRoot/usr/bin/amepatch.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 "rm -f /usr/bin/amepatch.sh" >>/tmpRoot/usr/arc/revert.sh