Last active
May 4, 2018 08:29
-
-
Save Sher-Chowdhury/0fb43ead9772bbca6bf7176bc591a671 to your computer and use it in GitHub Desktop.
this is a list of general rpms that should be installed on all boxes
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
#!/usr/bin/env bash | |
set -ex | |
yum install -y bind-utils # contains the dig command for doing dns lookups. | |
yum install -y epel-release | |
yum install -y vim | |
yum install -y facter | |
yum install -y bash-completion | |
yum install -y man-pages | |
yum install -y tree | |
yum install -y gdisk # better alternative to fdisk. Works for >2TB block devices. | |
yum install -y nc | |
yum install -y jq | |
yum install -y unzip | |
yum install -y git | |
yum install -y htop | |
yum install -y wget | |
yum install -y bash-completion-extras | |
yum install -y mtr | |
yum install -y traceroute | |
yum install -y iputils | |
yum install -y strace | |
yum install -y lsof | |
yum install -y tcpdump | |
yum install -y ansible | |
yum install -y psmisc # contains the pstree command. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment