Skip to content

Commit

Permalink
Fix ansible mistakes.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 30, 2016
1 parent 7142997 commit a74158c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ end
Vagrant.configure("2") do |config|

config.vm.provider :virtualbox do |v|
v.name = "default"
v.name = "bookmarker"
v.customize [
"modifyvm", :id,
"--name", "default",
"--name", "bookmarker",
"--memory", 512,
"--natdnshostresolver1", "on",
"--cpus", 1,
]
end

config.vm.box = "ubuntu/trusty64"

config.vm.network :private_network, ip: "192.168.33.99"
config.ssh.forward_agent = true

Expand Down
4 changes: 2 additions & 2 deletions ansible/roles/php/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

- name: Install php5
sudo: yes
apt: pkg=php5 state=latest
apt: pkg=php5.6 state=latest

- name: Install php5-fpm
sudo: yes
apt: pkg=php5-fpm state=latest
apt: pkg=php5.6-fpm state=latest

- name: Install PHP Packages
sudo: yes
Expand Down
4 changes: 2 additions & 2 deletions ansible/vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mysql:
dump: ''
php:
install: '1'
ppa: php5-5.6
packages: [php5-cli, php5-intl, php5-mcrypt, php5-mysql]
ppa: php
packages: [php5.6-cli, php5.6-intl, php5.6-mcrypt, php5.6-mysql]
composer:
install: '1'

0 comments on commit a74158c

Please sign in to comment.