#!/command/with-contenv bashio

file="/config/vhclient.ini"
touch $file

if [ -z "${3:-}" ]; then
  v = ''
else
  v = $3
fi

awk -f /usr/bin/vh_editini.awk -v section=$1 -v key=$2 -v value=$v $file
