Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Chef Cookbooks
mailcatcher
Commits
e5e5c5b5
Commit
e5e5c5b5
authored
Apr 19, 2017
by
Stefan Galinski
🎮
Browse files
[FEATURE] Support configurable PHP version
parent
2b036dcb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
recipes/default.rb
recipes/default.rb
+2
-2
No files found.
recipes/default.rb
View file @
e5e5c5b5
...
...
@@ -88,13 +88,13 @@ end
if
node
[
'platform_version'
]
==
'16.04'
replace_or_add
'change sendmail in the apache2 php configuration for mailcatcher'
do
path
'/etc/php/
7.0
/apache2/php.ini'
path
'/etc/php/
'
+
node
[
'ubuntu_base'
][
'php_version'
]
+
'
/apache2/php.ini'
pattern
'.*sendmail_path =.*'
line
'sendmail_path = "/usr/bin/env catchmail"'
end
replace_or_add
'change sendmail in the apache2 php configuration for mailcatcher'
do
path
'/etc/php/
7.0
/cli/php.ini'
path
'/etc/php/
'
+
node
[
'ubuntu_base'
][
'php_version'
]
+
'
/cli/php.ini'
pattern
'.*sendmail_path =.*'
line
'sendmail_path = "/usr/bin/env catchmail"'
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment