10 lines
160 B
Bash
Executable file
10 lines
160 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -f /etc/network/interfaces.local ]; then
|
|
echo "none"
|
|
exit 0
|
|
fi
|
|
|
|
echo "group:interfaces.local"
|
|
|
|
exec cat /etc/network/interfaces.local
|