Guest User

Untitled

a guest
May 21st, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Add the PPA, updated apt-get, install php7.2.
  2.  
  3. ## Commands for adding php7.2 via apt-get with PPA
  4. ```
  5. sudo add-apt-repository ppa:ondrej/php
  6. sudo apt-get update
  7. sudo apt-get install php7.2-cli
  8. ```
  9.  
  10. ------
  11.  
  12. ## Ruby snippet for adding role to automated builds
  13. ```
  14.  
  15. name: Add PHP 7.2 PPA
  16. apt_repository:
  17. repo: "ppa:ondrej/php"
  18. update_cache: yes
  19.  
  20. ```
Add Comment
Please, Sign In to add comment