9 lines
156 B
Text
9 lines
156 B
Text
|
#!/bin/sh
|
||
|
|
||
|
uci -q get gnunet.datastore || uci set gnunet.datastore=gnunet-config
|
||
|
|
||
|
uci -q batch <<EOF
|
||
|
set gnunet.datastore.DATABASE=heap
|
||
|
commit gnunet
|
||
|
EOF
|