mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 02:21:19 +00:00
11 lines
270 B
Bash
11 lines
270 B
Bash
#!/bin/sh
|
|
|
|
uci -q get gnunet.namestore || uci set gnunet.namestore=gnunet-config
|
|
uci -q get gnunet.namecache || uci set gnunet.namecache=gnunet-config
|
|
|
|
uci -q batch <<EOF
|
|
set gnunet.namestore.DATABASE=postgres
|
|
set gnunet.namecache.DATABASE=postgres
|
|
commit gnunet
|
|
EOF
|