11 lines
157 B
Bash
Executable File
11 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Test keydb-check-rdb
|
|
|
|
set -eu
|
|
|
|
# Perform a synchronous save to ensure .rdb file eixsts
|
|
keydb-cli SAVE
|
|
|
|
keydb-check-rdb /var/lib/keydb/dump.rdb
|