mirror of
https://github.com/ceph/ceph
synced 2024-12-22 11:31:55 +00:00
2cb0c110b5
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
21 lines
231 B
Bash
Executable File
21 lines
231 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
dir=`dirname $0`
|
|
|
|
$dir/prepare.sh
|
|
|
|
$dir/pri_nul.sh
|
|
rm mnt/?/* || true
|
|
|
|
$dir/rem_nul.sh
|
|
rm mnt/?/* || true
|
|
|
|
$dir/pri_pri.sh
|
|
rm mnt/?/* || true
|
|
|
|
$dir/rem_pri.sh
|
|
rm mnt/?/* || true
|
|
|
|
$dir/rem_rem.sh
|
|
rm mnt/?/* || true
|