arc-addons/lsiutil/install.sh
AuxXxilium 886f15f4c2 tree: rework
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-11-08 19:42:33 +01:00

20 lines
544 B
Bash
Executable File

#!/usr/bin/env ash
#
# 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.
#
if [ "${1}" = "late" ]; then
echo "Installing addon lsiutil - ${1}"
mkdir -p "/tmpRoot/usr/arc/addons/"
cp -pf "${0}" "/tmpRoot/usr/arc/addons/"
cp -pf /usr/sbin/lsiutil /tmpRoot/usr/sbin/lsiutil
elif [ "${1}" = "uninstall" ]; then
echo "Installing addon lsiutil - ${1}"
rm -f "/tmpRoot/usr/sbin/lsiutil"
fi