mirror of
https://github.com/ceph/ceph
synced 2024-12-20 10:23:24 +00:00
821511bd32
Many of the files in qa/qa_scripts/openstack had incorrect shebang lines: the bang was missing. This means that those scripts would execute using the calling user's login shell, which is doubtless not what the author intended. Now they'll always use bash. Two scripts do not need shebangs, because they contain only library functions and don't execute anything. I removed their shebangs. Signed-off-by: Alan Somers <asomers@gmail.com>
12 lines
326 B
Bash
Executable File
12 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Install a simple ceph cluster upon which openstack images will be stored.
|
|
#
|
|
set -fv
|
|
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 $*
|