Created
September 30, 2016 03:36
-
-
Save koolhead17/ca23c6930f35592d210917fccaa2308f to your computer and use it in GitHub Desktop.
script to scp Minio binary, configuration file and starting distributed cluster.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for dest in $(<pine64Iplist.txt); do | |
| scp ~/.minio/config.json ${dest}:/home/minio/.minio | |
| scp -p ~/minio ${dest}:/home/minio/ | |
| scp -p ~/clusterstart.sh ${dest}:/home/minio/ | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment