pkgbuilds/condor-libs/is-snapshot-boot

9 lines
189 B
Plaintext
Raw Normal View History

2024-10-13 09:19:50 -06:00
#!/usr/bin/bash
# Returns 0 on confirmed snapper snapshot boot, returns a non zero value otherwise
if grep -qE 'subvol=@/.snapshots/[0-9]+/snapshot' /proc/cmdline; then
exit 0
fi
exit 1