Created
June 21, 2017 18:20
-
-
Save lordcirth/434d52f251809f079ef5952a0ef67f6d to your computer and use it in GitHub Desktop.
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
# Packages that are installed on all hosts and require no setup | |
common_install_utils: | |
pkg.installed: | |
- pkgs: | |
- openssh-server | |
# Needed for apt-add-repository, etc | |
- python-software-properties | |
- python-pycurl | |
- python-apt | |
- tmux | |
- nano | |
- vim | |
- wget | |
- psmisc # killall | |
- lsof | |
# Performance | |
- htop | |
- nethogs | |
# network troubleshooting | |
- host | |
- tcpdump | |
- curl | |
- traceroute | |
- nmap | |
- telnet | |
# dig, nslookup | |
- dnsutils | |
- require: | |
- sls: common.apt | |
# man doesn't like being installed at the same time as other packages | |
common_install_man: | |
pkg.installed: | |
- pkgs: | |
- man | |
- require: | |
- sls: common.apt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment