mirror of
https://github.com/ceph/ceph
synced 2024-12-19 01:46:00 +00:00
12 lines
188 B
Plaintext
12 lines
188 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
[ $# -lt 2 ] && echo "usage: $0 <name> <command> [params...]" && exit 1
|
||
|
|
||
|
root=`dirname $0`
|
||
|
run_name=$1
|
||
|
command=$2
|
||
|
|
||
|
shift 2
|
||
|
|
||
|
$root/$command -c $root/run/$run_name/ceph.conf "$@"
|