mirror of
https://github.com/ceph/ceph
synced 2024-12-23 20:03:56 +00:00
test_ceph_daemon.sh: stupid test script
Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
parent
cb3a2ce776
commit
f486e4e416
18
test_ceph_daemon.sh
Executable file
18
test_ceph_daemon.sh
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
fsid=0a464092-dfd0-11e9-b903-002590e526e8
|
||||
|
||||
for f in `podman ps | awk '{print $1}' | grep -v CONT ` ; do podman kill $f ; done
|
||||
for f in `systemctl | grep ceph | awk '{print $1}'` ; do systemctl stop $f ; systemctl disable $f ; done
|
||||
|
||||
rm -rf /var/lib/ceph/$fsid/*
|
||||
rm -rf /var/log/ceph/$fsid/*
|
||||
|
||||
../src/ceph-daemon bootstrap \
|
||||
--fsid $fsid \
|
||||
--mon-ip 10.3.64.23 \
|
||||
--output-keyring k \
|
||||
--output-conf c
|
||||
chmod 644 k c
|
||||
|
||||
bin/ceph -c c -k k -s
|
Loading…
Reference in New Issue
Block a user