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
- Host: GitHub
- URL: https://github.com/rtuin/ansible-zendserver
- Owner: rtuin
- License: mit
- Created: 2014-02-17T20:10:08.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-22T07:39:49.000Z (about 12 years ago)
- Last Synced: 2023-03-12T07:24:06.456Z (over 3 years ago)
- Language: Shell
- Size: 173 KB
- Stars: 2
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 }
```