Files
2026-05-11 09:15:08 +02:00

10 lines
158 B
Bash

#!/usr/bin/env bash
if grep -q -E '^[^#]*\s/tmp\s' /etc/fstab; then
if grep -E '^[^#]*\s/tmp\s' /etc/fstab | grep -vq 'nodev'; then
exit 1
fi
fi
exit 0