fix: Loong64 can not auto install

Signed-off-by: shenmo <jifengshenmo@outlook.com>
This commit is contained in:
2024-10-16 13:54:09 +00:00
committed by Gitee
parent 21ffcc166e
commit d24004dcea
4 changed files with 26 additions and 22 deletions

2
debian/changelog vendored
View File

@@ -1,4 +1,4 @@
spark-store (4.3.1) UNRELEASED; urgency=medium
spark-store (4.3.1-1) UNRELEASED; urgency=medium
* 修复自提权更新问题
* 提升aptss稳定性

View File

@@ -2,6 +2,7 @@
case "$1" in
configure)
case `arch` in
x86_64)
echo "Enabling i386 arch..."
@@ -11,8 +12,7 @@ case "$1" in
aarch64)
echo "Will not enable armhf since 4271"
;;
loongarch64)
loongarch64)
echo "Nope we DO NOT WANT ABI1 now"
dpkg --remove-architecture loongarch64
;;
@@ -42,8 +42,7 @@ case "$1" in
ln -s -f /opt/durapps/spark-store/bin/aptss /usr/bin/aptss
# Create symbol links for SSINSTALL
ln -s -f /opt/durapps/spark-store/bin/auto-install-policy/store.spark-app.ssinstall.policy /usr/share/polkit-1/actions/store.spark-app.ssinstall.policy
# Install key
mkdir -p /tmp/spark-store-install/
@@ -52,9 +51,11 @@ case "$1" in
cp -f /tmp/spark-store-install/spark-store.asc.gpg /etc/apt/trusted.gpg.d/spark-store.gpg
# Start upgrade detect service
systemctl daemon-reload
systemctl enable spark-update-notifier --now || true
systemctl enable spark-update-notifier
systemctl start spark-update-notifier
# Update certain caches
@@ -71,6 +72,7 @@ case "$1" in
;;
triggered)
spark-dstore-patch
spark-dstore-patch
;;
esac

View File

@@ -1,5 +1,4 @@
#!/bin/bash
#检测网络链接畅通
function network-check()
{
@@ -24,5 +23,6 @@ function network-check()
}
#network-check
#echo "不再检测网络"
echo "不再检测网络"

View File

@@ -12,7 +12,6 @@ function notify-send()
}
if [ "$1" = "remove" -o "$1" = "purge" ] ; then
echo "$1"
echo "卸载操作,进行配置清理"
@@ -33,30 +32,33 @@ if [ "$1" = "remove" -o "$1" = "purge" ] ; then
# Remove residual symbol links to stop upgrade detect
rm -f /etc/xdg/autostart/spark-update-notifier.desktop
# Remove config files
for username in `ls /home`; do
echo /home/$username
if [ -d /home/$username/.config/spark-union/spark-store ]; then
rm -rf /home/$username/.config/spark-union/spark-store
fi
done
for username in `ls /home`
do
echo /home/$username
if [ -d /home/$username/.config/spark-union/spark-store ]
then
rm -rf /home/$username/.config/spark-union/spark-store
fi
done
# Shutdown services
systemctl disable spark-update-notifier --now || true
systemctl stop spark-update-notifier
# Stop update detect service
systemctl disable spark-update-notifier
# Clean the auto install polkit file if exist
rm -f /usr/share/polkit-1/actions/store.spark-app.ssinstall.policy
# Remove gpg key file
rm -f /etc/apt/trusted.gpg.d/spark-store.gpg
apt-key del '9D9A A859 F750 24B1 A1EC E16E 0E41 D354 A29A 440C'
else
if [ ! -z "`pidof spark-store`" ] ; then
echo "关闭已有 spark-store.."
notify-send "正在升级星火商店" "请在升级结束后重启星火商店" -i spark-store
killall spark-store
fi
fi