blob: 217a842659877db5b7db18d0cdad241888de5575 [file] [log] [blame]
#!/bin/sh
#
# Returns 0 (true) if this device has a local G.hn node
# By checking for marvell's DEK tool: configlayer
#
. /etc/utils.sh
if runnable configlayer; then
exit 0
else
exit 1
fi