mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
amepatch: rewrite
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
parent
6e5d8be845
commit
0e819a8a2b
@ -43,7 +43,6 @@ if [ -d "/var/packages/CodecPack" ]; then
|
||||
content='[{"attribute": {"codec": "hevc", "type": "free"}, "status": "valid", "extension_gid": null, "expireTime": 0, "appName": "ame", "follow": ["device"], "duration": 1576800000, "appType": 14, "licenseContent": 1, "registered_at": 1649315995, "server_time": 1685421618, "firstActTime": 1649315995, "licenseCode": "0"}, {"attribute": {"codec": "aac", "type": "free"}, "status": "valid", "extension_gid": null, "expireTime": 0, "appName": "ame", "follow": ["device"], "duration": 1576800000, "appType": 14, "licenseContent": 1, "registered_at": 1649315995, "server_time": 1685421618, "firstActTime": 1649315995, "licenseCode": "0"}]'
|
||||
else
|
||||
echo "MD5 mismatch - Already patched or unsupported version!"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
for ((i = 0; i < ${#hex_values[@]}; i++)); do
|
||||
@ -65,19 +64,22 @@ if [ -d "/var/packages/CodecPack" ]; then
|
||||
if "$cp_usr_path/bin/synoame-bin-auto-install-needed-codec"; then
|
||||
echo -e "AME Patch: Successful!"
|
||||
exit 0
|
||||
else
|
||||
echo -e "AME Patch: Unsuccessful!"
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
if [ -f "$so_backup" ]; then
|
||||
mv -f "$so_backup" "$so"
|
||||
fi
|
||||
if [ -f "$lic_backup" ]; then
|
||||
mv -f "$lic_backup" "$lic"
|
||||
fi
|
||||
if [ -f "$licsig_backup" ]; then
|
||||
mv -f "$licsig_backup" "$licsig"
|
||||
fi
|
||||
echo -e "AME Patch: Backup restored!"
|
||||
exit 1
|
||||
fi
|
||||
echo -e "AME Patch: Unsuccessful!"
|
||||
if [ -f "$so_backup" ]; then
|
||||
mv -f "$so_backup" "$so"
|
||||
fi
|
||||
if [ -f "$lic_backup" ]; then
|
||||
mv -f "$lic_backup" "$lic"
|
||||
fi
|
||||
if [ -f "$licsig_backup" ]; then
|
||||
mv -f "$licsig_backup" "$licsig"
|
||||
fi
|
||||
echo -e "AME Patch: Backup restored!"
|
||||
exit 1
|
||||
fi
|
||||
exit 0
|
@ -24,8 +24,7 @@ Type=simple
|
||||
Restart=on-failure
|
||||
RestartSec=5s
|
||||
RemainAfterExit=yes
|
||||
ExecStartPre=/usr/bin/amepatch.sh
|
||||
ExecStart=/usr/syno/bin/synopkg restart CodecPack
|
||||
ExecStart=/usr/bin/amepatch.sh
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
Loading…
Reference in New Issue
Block a user