mirror of
https://github.com/ceph/ceph
synced 2024-12-20 18:33:44 +00:00
11 lines
313 B
Bash
11 lines
313 B
Bash
|
#/bin/bash -fv
|
||
|
#
|
||
|
# Install a simple ceph cluster upon which openstack images will be stored.
|
||
|
#
|
||
|
ceph_node=${1}
|
||
|
source copy_func.sh
|
||
|
copy_file files/$OS_CEPH_ISO $ceph_node .
|
||
|
copy_file execs/ceph_cluster.sh $ceph_node . 0777
|
||
|
copy_file execs/ceph-pool-create.sh $ceph_node . 0777
|
||
|
ssh $ceph_node ./ceph_cluster.sh $*
|