The issue is that an ethernet config file is removed without
proper checks in place (rm -f), which triggers an error and
makes the connman startup script to fail.
The file is now removed with proper checks in place.
Fixes [YOCTO #4003].
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
if [ "x$NET_CONF" = "x" ]; then
# Wired interface is not configured via kernel cmdline
# Remove connman config file template
- rm ${CONFIGF}
+ rm -f ${CONFIGF}
else
# Setup a connman config accordingly
sed -i -e "s|^\(IPv4 =\)|\1 ${NET_CONF}|" ${CONFIGF}