mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
dc99ea4de0
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
52 lines
1.7 KiB
Bash
Executable File
52 lines
1.7 KiB
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 storagepanel - ${1}"
|
|
mkdir -p "/tmpRoot/usr/arc/addons/"
|
|
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
|
|
|
|
cp -vf /usr/bin/storagepanel.sh /tmpRoot/usr/bin/storagepanel.sh
|
|
[ ! -f "/tmpRoot/usr/bin/gzip" ] && cp -vf /usr/bin/gzip /tmpRoot/usr/bin/gzip
|
|
|
|
shift
|
|
mkdir -p "/tmpRoot/usr/lib/systemd/system"
|
|
DEST="/tmpRoot/usr/lib/systemd/system/storagepanel.service"
|
|
cat << EOF > ${DEST}
|
|
[Unit]
|
|
Description=Modify storage panel
|
|
DefaultDependencies=no
|
|
IgnoreOnIsolate=true
|
|
After=multi-user.target
|
|
|
|
[Service]
|
|
User=root
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart=/usr/bin/storagepanel.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/storagepanel.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/storagepanel.service
|
|
elif [ "${1}" = "uninstall" ]; then
|
|
echo "Installing addon storagepanel - ${1}"
|
|
|
|
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/storagepanel.service"
|
|
rm -f "/tmpRoot/usr/lib/systemd/system/storagepanel.service"
|
|
|
|
# rm -f /tmpRoot/usr/bin/gzip
|
|
[ ! -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/storagepanel.sh -r" >>/tmpRoot/usr/arc/revert.sh
|
|
echo "rm -f /usr/bin/storagepanel.sh" >>/tmpRoot/usr/arc/revert.sh
|
|
fi |