mirror of
https://github.com/openwrt/packages.git
synced 2026-01-10 11:44:48 +00:00
11 lines
270 B
Bash
11 lines
270 B
Bash
#!/bin/sh
|
|
|
|
uci -q get gnunet.datastore || uci set gnunet.datastore=gnunet-config
|
|
uci -q get gnunet.datacache || uci set gnunet.datacache=gnunet-config
|
|
|
|
uci -q batch <<EOF
|
|
set gnunet.datastore.DATABASE=postgres
|
|
set gnunet.datacache.DATABASE=postgres
|
|
commit gnunet
|
|
EOF
|