
| Current Path : /usr/share/bug/multipath-tools/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/share/bug/multipath-tools/script |
#!/bin/sh
CONFIG_FILE=/etc/multipath.conf
exec >&3
if [ -e "$CONFIG_FILE" ]; then
printf "Contents of $CONFIG_FILE:\n"
grep -Ev "^([[:space:]]*#|$)" $CONFIG_FILE
else
printf "$CONFIG_FILE does not exist.\n"
fi
printf "\n"