You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ubuntu 14.04, Since the change from php5 to php7, when using ansible-role-drupal, the dependencies ansible-role-php fail because php7 isn't on official 14.04 repository.
In tasks/setup-Debian.yml, adding the repository before those task are called fix the issue:
name: Add php7 Repo for Ubuntu 14.04.
apt_repository: repo='ppa:ondrej/php'
Ubuntu 14.04, Since the change from php5 to php7, when using ansible-role-drupal, the dependencies ansible-role-php fail because php7 isn't on official 14.04 repository.
In tasks/setup-Debian.yml, adding the repository before those task are called fix the issue:
apt_repository: repo='ppa:ondrej/php'
apt: update_cache=yes cache_valid_time=86400
apt:
name: "{{ item }}"
state: installed
with_items: "{{ php_packages }}"
register: php_package_install
notify: restart webserver
Did you notice the issue ? have you any idea how to fix this in a better way please ?
Forgot to add: Thanks for the good work @geerlingguy !
The text was updated successfully, but these errors were encountered: