Files
home-assistant-addons/vhclient/rootfs/usr/bin/vh_editini
Hans Karlinius 9a5858b3e9 test
2024-12-03 04:04:53 +01:00

15 lines
258 B
Plaintext
Executable File

#!/command/with-contenv bashio
tmpfile="/tmp/vhclient_config_tmp"
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 > $tmpfile
mv $tmpfile $file