mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-12-13 20:32:05 +08:00
隐藏 asc key 文件下载过程;asc 文件转为 gpg 文件直接放入 /etc/apt/trusted.gpg.d 文件夹生效;隐藏 apt update 输出日志 Log: 修改 postinst / prerm 脚本;修改 copyright 文件
16 lines
412 B
Bash
Executable File
16 lines
412 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Remove residual symbol links
|
|
rm /usr/local/bin/spark-store
|
|
rm /usr/local/bin/ssinstall
|
|
rm /usr/local/bin/spark-dstore-patch
|
|
rm /usr/local/bin/ussinstall
|
|
rm /usr/local/bin/ussremove
|
|
|
|
# Remove gpg key file
|
|
if [ -f "/etc/apt/trusted.gpg.d/spark-store.gpg" ] ; then
|
|
rm /etc/apt/trusted.gpg.d/spark-store.gpg
|
|
fi
|
|
|
|
nohup apt-key del '9D9A A859 F750 24B1 A1EC E16E 0E41 D354 A29A 440C' > /dev/null 2>&1 &
|