mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
fdcb89b61e
Valkey is a community fork of the key-value database Redis. It is a drop in replacement to Redis so most of the files are derived from their Redis equivalent. Co-authored-by: George Sapkin <george@sapk.in> Signed-off-by: Matthew Cather <mattbob4@gmail.com>
14 lines
211 B
Bash
Executable File
14 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
valkey-server)
|
|
valkey-server --version | grep -F "$2"
|
|
;;
|
|
valkey-cli)
|
|
valkey-cli --version | grep -F "$2"
|
|
;;
|
|
valkey-utils)
|
|
valkey-benchmark --version | grep -F "$2"
|
|
;;
|
|
esac
|