mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 11:16:31 +04:00
Wrap around dhtcache vs. datacache confusion which prevented the datacache service from starting. While at it, sanetize default package selection. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
11 lines
259 B
Bash
11 lines
259 B
Bash
#!/bin/sh
|
|
|
|
uci -q get gnunet.datastore || uci set gnunet.datastore=gnunet-config
|
|
uci -q get gnunet.dhtcache || uci set gnunet.dhtcache=gnunet-config
|
|
|
|
uci -q batch <<EOF
|
|
set gnunet.datastore.DATABASE=heap
|
|
set gnunet.dhtcache.DATABASE=heap
|
|
commit gnunet
|
|
EOF
|