#!/bin/sh
# Copyright (C) 2014 OpenWrt.org

[ -e /etc/config/network ] && exit 0

touch /etc/config/network

. /lib/functions/uci-defaults.sh

ucidef_set_interface_loopback
ucidef_set_interface_lan "eth0"

uci commit network

exit 0
