mirror of
https://github.com/ceph/ceph
synced 2024-12-22 03:22:00 +00:00
21 lines
231 B
Bash
21 lines
231 B
Bash
|
#!/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
|