Skip to content

geerlingguy/ansible-role-php-pear

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ansible Role: PHP PEAR packages

CI

Installs PHP PEAR packages on servers with PHP and php-pear already installed.

Requirements

PHP and php-pear (or the equivalent) must already be installed on the server, so the pear command can be run.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

php_pear_channels:
  - pear.phing.info

(Defaults to empty list ([]).) The PEAR channels that should be discovered so pear libraries can be installed. By default, PEAR is not configured to autodiscover channels for libraries you would like installed, so you need to explicitly list all the libraries' channels here.

php_pear_libraries:
  - phing

(Defaults to empty list ([]).) The libraries/extensions you would like installed via PEAR.

Dependencies

  • geerlingguy.php

Example Playbook

---
- hosts: webservers

  vars_files:
    - vars/main.yml

  roles:
    - geerlingguy.php-pear

Inside vars/main.yml:

php_pear_channels:
  - pear.phpunit.de

php_pear_libraries:
  - phpunit/PHPUnit

TODO

  • Continue refining the changed/failed conditions for PEAR. Yuck.

License

MIT / BSD

Author Information

This role was created in 2014 by Jeff Geerling, author of Ansible for DevOps.