Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f0efcff07f | |||
| 7280e186dd | |||
| f8d3ba4327 | |||
| 251d8795ea | |||
| 33cfff35b7 | |||
| 5e5aac70fa | |||
| ed79033f44 | |||
| c87fa90e62 | |||
| 9377f60b7d | |||
| 8c2e8d5e08 | |||
| b56434f44e | |||
| ddef5769ee | |||
| 6dd30696b4 | |||
| f89cb7e93b | |||
| 28b7cb428b | |||
| e6057713f9 | |||
| 855c2c0a2d | |||
| af5ab1f3bd | |||
| 5672ff56d2 |
@ -1 +1 @@
|
||||
http://xplayer-ota.pureroad.cn/files_20251109_075900.tar.xz
|
||||
http://xplayer-ota.pureroad.cn/files_20251203_232832.tar.xz
|
||||
|
||||
@ -63,6 +63,7 @@
|
||||
libfdk-aac2 \
|
||||
libldacbt-abr2 \
|
||||
libldacbt-enc2 \
|
||||
aria2 \
|
||||
cloud-guest-utils"
|
||||
|
||||
tasks:
|
||||
@ -79,14 +80,43 @@
|
||||
mode: '0644'
|
||||
tags: apt
|
||||
|
||||
- name: check missing packages
|
||||
shell:
|
||||
cmd: |
|
||||
MISSING=""
|
||||
for pkg in {{ packages }}; do
|
||||
# 先检查原包名
|
||||
if dpkg-query -W -f='${Status}' "$pkg" 2>/dev/null | grep -q "install ok installed"; then
|
||||
continue
|
||||
# 如果原包名不存在,尝试检查带 t64 后缀的版本
|
||||
elif dpkg-query -W -f='${Status}' "${pkg}t64" 2>/dev/null | grep -q "install ok installed"; then
|
||||
continue
|
||||
else
|
||||
MISSING="yes"
|
||||
break
|
||||
fi
|
||||
done
|
||||
if [ -n "$MISSING" ]; then
|
||||
echo "missing"
|
||||
else
|
||||
echo "all_installed"
|
||||
fi
|
||||
args:
|
||||
executable: /bin/bash
|
||||
register: package_check
|
||||
changed_when: false
|
||||
ignore_errors: yes
|
||||
tags: apt
|
||||
|
||||
- name: update apt cache
|
||||
shell:
|
||||
cmd: |
|
||||
if command -v apt-fast &> /dev/null; then
|
||||
apt-fast update -y
|
||||
apt-fast update -y || apt-get update -y
|
||||
else
|
||||
apt-get update -y
|
||||
fi
|
||||
when: package_check.stdout == "missing"
|
||||
ignore_errors: yes
|
||||
tags: apt
|
||||
|
||||
@ -94,10 +124,11 @@
|
||||
shell:
|
||||
cmd: |
|
||||
if command -v apt-fast &> /dev/null; then
|
||||
apt-fast install -y {{ packages }}
|
||||
apt-fast install -y {{ packages }} || apt-get install -y {{ packages }}
|
||||
else
|
||||
apt-get install -y {{ packages }}
|
||||
fi
|
||||
when: package_check.stdout == "missing"
|
||||
ignore_errors: yes
|
||||
tags: apt
|
||||
|
||||
@ -268,6 +299,7 @@
|
||||
mode: '0755'
|
||||
- src: ../files/99-usb-auto-mount.rules
|
||||
dest: /etc/udev/rules.d/99-usb-auto-mount.rules
|
||||
|
||||
mode: '0644'
|
||||
tags: usb
|
||||
notify:
|
||||
@ -334,7 +366,6 @@
|
||||
- enable_xplayer_server
|
||||
- start_xplayer_server
|
||||
- restart_xplayer_server
|
||||
- reboot_required
|
||||
register: copy_result
|
||||
changed_when: copy_result.changed or (force_update | default(false) | bool)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user