Files
2026-05-03 15:40:15 -07:00

9 lines
146 B
Bash
Executable File

#!/bin/bash
# Skip unless this is a booted systemd system.
if [ ! -d /run/systemd/system ]; then
exit 0
fi
sudo mount -o ro,remount / || true