11 lines
297 B
Bash
Executable file
11 lines
297 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -f /etc/fstab.local ]; then
|
|
echo "group:fstab.local"
|
|
exec cat /etc/fstab.local
|
|
else
|
|
# S'il n'y a pas de fstab.local (pour les serveurs ou ca n'a pas ete
|
|
# fait, on lit le fstab parce qu'on on en a besoin pour
|
|
# /etc/monit/services)
|
|
exec cat /etc/fstab
|
|
fi
|