mirror of
https://github.com/ceph/ceph
synced 2025-02-08 19:38:47 +00:00
28 lines
310 B
Bash
Executable File
28 lines
310 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
|
|
|
|
$dir/pri_nul.sh
|
|
rm -r mnt/?/* || true
|
|
|
|
$dir/pri_pri.sh
|
|
rm -r mnt/?/* || true
|
|
|