12 lines
287 B
Bash
12 lines
287 B
Bash
#!/usr/bin/env bash
|
|
|
|
if grep -q -E '^[^#]*\s/var\s' /etc/fstab; then
|
|
# If such a line exists, check if it contains the nodev flag
|
|
if grep -E '^[^#]*\s/var\s' /etc/fstab | grep -vq 'nodev'; then
|
|
# If /var exists and does NOT contain nodev, exit with 1 (error)
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
exit 0
|