This file contains 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
{# | |
# "Oracle" Java Installation | |
# Currently only interested in the Oracle 'Server' Java package. | |
# Server Jave has the following: | |
# - No Auto Update | |
# - JRE | |
# - 64-bit only | |
#} | |
java-home: |
This file contains 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
{%- if instance_owner != "nginx" %} | |
{{ instance_owner }}: | |
user: | |
- present | |
- require: | |
- group: {{ instance_owner }} | |
group: | |
- present | |
{%- endif %} | |
{% endfor %} |
This file contains 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
base: | |
'*': | |
- apache_base | |
- iptables | |
'minion1': | |
- loc1 | |
- role2 | |
- dep1 |
This file contains 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
{% if grains['os'] == 'Ubuntu' %} | |
apache: | |
{% elif grains['os'] == 'CentOs' %} | |
httpd: | |
{% endif %} | |
pkg: | |
- installed | |
service: | |
- running |
This file contains 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
nscd: | |
pkg: | |
- installed | |
service: | |
- running | |
- name: nscd | |
- enable: True | |
- watch: | |
- file: /etc/ldap/ldap.conf |
This file contains 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
princexml: | |
pkg: | |
- installed | |
- sources: | |
- prince: http://www.princexml.com/download/prince_9.0-2_ubuntu12.04_amd64.deb |
This file contains 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
/etc/grub.conf: | |
file.symlink: | |
- target: /boot/grub/grub.conf | |
- user: helderco | |
- group: helderco | |
- mode: 655 |
This file contains 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
{% from "users/map.jinja" import users with context %} | |
group1: | |
mbarnett: | |
fullname: Melissa Barnett | |
groups: | |
- {{ salt['pillar.get']('users.adm_group') }} | |
crypt: $6$eR6EbjW8$abCOo.v/bx629Sl0jz0R61jIE8kC8Q3v7VhxTDjTerSiJnF.9Qv2XXw/Whb3x48yBfFGAPmiHW5PAKxNcegcg1 | |
home: /home/mbarnett |
This file contains 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
munin-node: | |
pkg: | |
- installed | |
- names: | |
- munin-node | |
- munin-plugins-extra | |
- liblwp-useragent-determined-perl | |
- libcache-cache-per | |
service: | |
- running |
This file contains 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
docker: | |
pkg.installed: | |
- name: lxc-docker | |
- version: '0.6.6' |
OlderNewer