This repository has been archived by the owner on Aug 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added uploadprogress install task to drupal role.
- Loading branch information
Thom Toogood
committed
Feb 15, 2016
1 parent
954892b
commit fe000be
Showing
4 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
- name: Install uploadprogress PECL library. | ||
pear: | ||
name: pecl/uploadprogress | ||
state: present | ||
|
||
- name: Add php extension config for uploadprogress. | ||
template: | ||
src: uploadprogress.ini.j2 | ||
dest: "{{ php_extension_conf_path }}/uploadprogress.ini" | ||
owner: root | ||
group: root | ||
force: yes | ||
mode: 0644 | ||
notify: restart webserver |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
; activate and configurate for php uploadprogress module | ||
extension=uploadprogress.so |
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
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