An open API service indexing awesome lists of open source software.

https://github.com/rtuin/ansible-zendserver

A Zend Server role for Ansible
https://github.com/rtuin/ansible-zendserver

Last synced: about 1 year ago
JSON representation

A Zend Server role for Ansible

Awesome Lists containing this project

README

          

Role Name
========

This Ansible role lets you install Zend Server on the specified host

Requirements
------------

Nothing, it runs out of the box.

Role Variables
--------------

In the current version, you can specify the following variables:

| Name | Default | |
|--------------------|---------|----------------------------------------------------|
| zendserver_version | 6.3 | The version of Zend Server to install |
| php_version | 5.5 | The version of PHP to install |
| php_cli_in_path | true | Add the Zend Server binary dir to the bash profile |

Dependencies
------------

This package has no dependencies on modules not included with Ansible by default.

License
-------

MIT

Author Information
------------------

Created by Richard Tuin
https://www.twitter.com/Richard_Tuin
http://www.rtuin.nl

Examples
--------

```
---
- name: Zend Server test
hosts: all
roles:
- rtuin.zendserver
```

Or, using parameters:

```
---
- name: Zend Server test
hosts: all
roles:
- { role: rtuin.zendserver, php_version: 5.4, zendserver_version: 6.2 }
```