connman-conf: Avoid appending IPv4 address
authorJukka Rissanen <jukka.rissanen@linux.intel.com>
Fri, 22 Mar 2013 08:11:42 +0000 (10:11 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 22 Mar 2013 16:54:37 +0000 (16:54 +0000)
If run more than once, the IP addresses would be appended
to IPv4 variable. Avoid that by rewriting the IPv4 always.

(From OE-Core rev: da682e752e351e5bb7636ee187db3eabc208c177)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-connectivity/connman/connman-conf/qemuall/wired-setup

index 59ebb57..c46899e 100644 (file)
@@ -12,5 +12,5 @@ if [ "x$NET_CONF" = "x" ]; then
        rm -f ${CONFIGF}
 else
        # Setup a connman config accordingly
-       sed -i -e "s|^\(IPv4 =\)|\1 ${NET_CONF}|" ${CONFIGF}
+       sed -i -e "s|^IPv4 =.*|IPv4 = ${NET_CONF}|" ${CONFIGF}
 fi