mirror of
https://github.com/novatiq/packages.git
synced 2026-07-23 12:06:08 +01:00
15 lines
174 B
Bash
15 lines
174 B
Bash
#!/bin/sh
|
|
|
|
[ -e /etc/config/gnunet ] && exit 0
|
|
|
|
touch /etc/config/gnunet
|
|
|
|
uci batch <<EOF
|
|
set gnunet.nse=gnunet-config
|
|
set gnunet.nse.WORKDELAY='500 ms'
|
|
|
|
commit gnunet
|
|
|
|
EOF
|
|
|