mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-04-23 19:32:15 +00:00
26 lines
538 B
YAML
26 lines
538 B
YAML
---
|
|
- hosts: hifive
|
|
become: yes
|
|
become_user: root
|
|
tasks:
|
|
- name: install php7
|
|
apt:
|
|
pkg:
|
|
- php7.0
|
|
- libapache2-mod-php7.0
|
|
- php7.0-mysql
|
|
- php7.0-curl
|
|
- php7.0-json
|
|
- php7.0-gd
|
|
- php7.0-mcrypt
|
|
- php7.0-msgpack
|
|
- php7.0-memcached
|
|
- php7.0-intl
|
|
- php7.0-sqlite3
|
|
- php7.0-gmp
|
|
- php7.0-geoip
|
|
- php7.0-mbstring
|
|
- php7.0-xml
|
|
- php7.0-zip
|
|
state: present
|