reliant-system/dracut/99reliant/scripts/readonly.sh
2025-08-28 13:31:01 -04:00

9 lines
235 B
Bash
Executable file

#!/usr/bin/sh
if getargbool 0 systemd.volatile; then
for device in $(lsblk -rno name); do
device_path="/dev/$device"
if [ -b "$device_path" ]; then
blockdev --setro "$device_path"
fi
done
fi