Several roles reported "changed" on every playbook run even when
nothing on the target had drifted, making real config drift
indistinguishable from noise:
- 7 systemd tasks across 6 roles used state:restarted, which always
issues a restart and always reports changed. Switched to
state:started plus notify-driven handlers that only restart when
the underlying unit file, script, or config actually changes.
- pi_standard_setup's boot mode, timezone, and locale tasks shelled
out to raspi-config with changed_when:true hardcoded. Boot mode now
checks systemctl get-default first; timezone/locale now use the
natively idempotent community.general.timezone/locale_gen modules.
- The pi account password task computed password_hash('sha512')
without a seed, generating a new random salt (and thus an
apparently different hash) on every run. Added a stable seed so the
hash only changes when the underlying secret does.
Also renamed a mislabeled task in pi_squeezelite_custom and fixed a
typo in pi_standard_setup while those files were already touched.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
---
|
|
- name: Uninstall system package of squeezelite
|
|
ansible.builtin.apt:
|
|
name: squeezelite
|
|
state: absent
|
|
- name: Install dependencies
|
|
ansible.builtin.apt:
|
|
name:
|
|
- libmad0
|
|
- libmpg123-0
|
|
- libflac12
|
|
- libvorbisfile3
|
|
- libfaad2
|
|
# for building libssl-dev, libasound2-dev, libflac-dev, libvorbis-dev, libsoxr-dev, libfaad-dev, libmad0-dev, libmpg123-dev
|
|
state: present
|
|
cache_valid_time: 7200
|
|
- name: Remove old config file if present
|
|
ansible.builtin.file:
|
|
path: /etc/default/squeezelite
|
|
state: absent
|
|
- name: Copy over custom compile version of squeezelite
|
|
ansible.builtin.copy:
|
|
src: squeezelite
|
|
dest: /opt/squeezelite
|
|
mode: "700"
|
|
notify: Restart squeezelite
|
|
- name: Install systemd service file
|
|
ansible.builtin.template:
|
|
src: squeezelite.service
|
|
dest: /lib/systemd/system/
|
|
mode: "0644"
|
|
notify: Restart squeezelite
|
|
- name: Enable squeezelite autostart
|
|
ansible.builtin.systemd:
|
|
name: squeezelite
|
|
state: started
|
|
enabled: "yes"
|
|
daemon_reload: "yes"
|
|
- name: Add to sysdweb
|
|
ansible.builtin.include_role:
|
|
name: pi_sysdweb
|
|
vars:
|
|
pi_sysdweb_name: squeezelite
|
|
|
|
# build with adapted Makefile.rpi:
|
|
# OPTS = -DRESAMPLE -DDSD -DUSE_SSL -DLINKALL -I./include -I./include/opus -I./include/alac -I/usr/local/include -s -mfpu=vfp
|
|
# -mfloat-abi=hard -march=armv6zk -mtune=arm1176jzf-s
|