Skip to content

Commit 625860e

Browse files
committed
Merge branch 'master' into theme-5.0
2 parents 1c4e62d + bd23079 commit 625860e

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

archive/puphpet/puppet/Puppetfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mod 'puppetlabs/firewall',
2626
:ref => '1.1.1'
2727
mod 'puppetlabs/java',
2828
:git => 'https://github.com/puppetlabs/puppetlabs-java.git',
29-
:ref => '1.2.0'
29+
:ref => '1.3.0'
3030
mod 'attachmentgenie/locales',
3131
:git => 'https://github.com/attachmentgenie/attachmentgenie-locales.git',
3232
:ref => '1.1.1'

archive/puphpet/puppet/nodes/Apache.pp

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@
3838
# centos 2.4 installation creates webroot automatically,
3939
# requiring us to manually set owner and permissions via exec
4040
exec { 'Create apache webroot':
41-
command => "mkdir -m 775 -p ${www_root} && \
41+
command => "mkdir -p ${www_root} && \
4242
chown root:${webroot_group} ${www_root} && \
43+
chmod 775 ${www_root} && \
4344
touch /.puphpet-stuff/apache-webroot-created",
4445
creates => '/.puphpet-stuff/apache-webroot-created',
4546
require => [

src/Puphpet/Extension/ApacheBundle/Resources/views/form.html.twig

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{% import "PuphpetMainBundle:front:macros/popover.html.twig" as popover %}
22
<section id="apache">
33
<div class="row">
4+
<div class="col-xs-12">
5+
<div class="alert alert-danger" role="alert">
6+
<p>
7+
<strong>Warning!</strong>
8+
PuPHPet has dropped support for mod_php. You are encouraged to use fastcgi.
9+
</p>
10+
</div>
11+
</div>
412
<div class="col-xs-12">
513
<div class="panel panel-default">
614
<div class="panel-heading">

0 commit comments

Comments
 (0)