aboutsummaryrefslogtreecommitdiff
path: root/tests/installer-steps/test_install_executable.py
Commit message (Collapse)AuthorAgeFilesLines
* fix(installer): guard the cp and chmod that install helper scriptsCraig Jennings38 hours1-0/+66
With `set -e` off, the installer copied its zfs-replicate, zfs-pre-snapshot, and hypr-live-update-guard scripts into place with bare cp/chmod. A missing or partial source failed silently, leaving a systemd service with a dead ExecStart or a pacman hook pointing at a script that never landed. The two zfs scripts now install through install_executable, which guards the copy, warns on failure, and skips the chmod when the copy did not land. The two live-update-guard chmods (the guard binary and its hook) are guarded inline with error_warn.