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
# Inspired by https://gist.github.com/abernardobr/e4292953fc84f9456cfa | |
# | |
# Please don't install software from source in production. | |
# | |
yum -y install http://mirror.rackspace.com/epel/7/x86_64/e/epel-release-7-6.noarch.rpm | |
yum -y install GraphicsMagick-c++-devel |
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/puppet/environments/production/manifests/java01.pp | |
node 'java01.example.lan' inherits default { | |
file { '/etc/httpd/ssl': | |
ensure => 'directory', | |
owner => 'root', | |
group => 'root', | |
mode => '0640', | |
recurse => 'remote', | |
source => 'puppet:///files/ssl/example.com', | |
} |