salt/states/basepkgs/init.sls
2017-08-07 13:25:01 -05:00

26 lines
433 B
Text
Executable file

nano:
pkg.installed
wget:
pkg.installed
openssh:
pkg.installed
htop:
pkg.installed
git:
pkg.installed
#note: bug in current version of saltstack breaks multi-package installs w/ yum. It'll be fixed in next version
#https://github.com/saltstack/salt/issues/28356
#basepkgs:
# pkg.installed:
# - pkgs:
# - nano
# - wget
# - openssh
# - htop
# - git
sshd:
service.running:
- enable: True