Skip to content

Commit d662833

Browse files
committed
fixing linking of php mcrypt module to sapi
1 parent 6032392 commit d662833

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.gitignore

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1-
.idea
1+
*~
2+
*.lock
3+
*.DS_Store
4+
*.swp
5+
*.out
6+
.idea/
7+
.project/
8+
.settings
9+
.buildpath
10+
/*.sublime-project
11+
*.sublime-workspace
212
.vagrant
313

provisioning/roles/sandbox/tasks/main.yml

+7
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@
105105
- /etc/php5/apache2/php
106106
- /etc/php5/cli/php
107107

108+
- name: Link PHP Mcrypt to PHP SAPIs (because Ubuntu doesnt)
109+
file: src=../../mods-available/mcrypt.ini path=/etc/php5/{{item}}/conf.d/20-mcrypt.ini state=link
110+
with_items:
111+
- apache2
112+
- cli
113+
ignore_errors: yes
114+
108115
- name: Set Pear Config
109116
command: "{{item}}"
110117
with_items:

0 commit comments

Comments
 (0)