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 | |
| # Install aliyun repo | |
| echo ">>> Install aliyun repo" | |
| curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo >/dev/null 2>&1 | |
| # Install desired packages | |
| echo ">>> Install desired packages" | |
| yum install -y -q vim wget git net-tools epel-release >/dev/null 2>&1 |