X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=recipes-config%2Fcluster-demo-network-config%2Ffiles%2Fcluster-demo-network-conf.sh;fp=recipes-config%2Fcluster-demo-network-config%2Ffiles%2Fcluster-demo-network-conf.sh;h=3f538175ffd3a25de7c800c13d63cb03e7e9204e;hb=b83de510d5e50285805b557866b94c5be3dd2a3f;hp=0000000000000000000000000000000000000000;hpb=2e30ec6f8131deacec2861d43000e42515d66019;p=AGL%2Fmeta-agl-demo.git diff --git a/recipes-config/cluster-demo-network-config/files/cluster-demo-network-conf.sh b/recipes-config/cluster-demo-network-config/files/cluster-demo-network-conf.sh new file mode 100644 index 000000000..3f538175f --- /dev/null +++ b/recipes-config/cluster-demo-network-config/files/cluster-demo-network-conf.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +CONNMAN_CONF=/etc/connman/main.conf +CLUSTER_ADDRESS=192.168.20.93 + +if [ -z "$1" ]; then + echo "Usage: $0 " + exit 1 +fi + +# Need to blacklist given device with connman if it isn't already, +# otherwise connman will over-ride address configuration. +if ! grep '^NetworkInterfaceBlacklist=' ${CONNMAN_CONF} | grep -q $1; then + sed -i "s/^\(NetworkInterfaceBlacklist=.*\)/\1,$1/" ${CONNMAN_CONF} +fi + +/sbin/ifconfig $1 ${CLUSTER_ADDRESS}