mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 11:02:12 +08: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
|
|
|