8 lines
104 B
Bash
Executable File
8 lines
104 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
fdbcli --exec "configure new single memory"
|
|
echo "FoundationDB configured."
|
|
exit 0
|
|
|