vagrant-conductor 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99c233ed92663d483db2732a88123040ee2898d8
4
- data.tar.gz: 6792eedcb1d35f9ea56328faa9bb6fbf9a7a2f00
3
+ metadata.gz: ae4fa2bef0863b21d15b849aa4934ffb93c610c9
4
+ data.tar.gz: 244fe6dc8c32850a879cf13570aa9d3cde9a272e
5
5
  SHA512:
6
- metadata.gz: b9748de7d43a9c5afe3ce397b29fa91a8673cd9fe8faf4d88d2974381c9ba7a3049c7e099a1e11efd4c2dd9c70aa202c151e47bc0d9bc79ca2a4f695dbdeddff
7
- data.tar.gz: 40439775b48b886ea9935402c723adf50ececce840f27a6e966f139a146a50d009b607a59600c8f19feb09222939686277d00b16c4e69bef4cf91088b6ed67b6
6
+ metadata.gz: 350b6cd88661a29a7efdc686cf9a2f51b8f2b2cab59f1d751f22208a27eaf614b3fe14151e33f60d6e626b06358d649345ffb107bf92f0f234be2d19c88230f3
7
+ data.tar.gz: 90c15d52c2c80d657402becddb743c067077bee2c9edb23a0e4ed635898047a1cc7feb90f51da08a20d05f6dfb2d0a99168556a1695f2abc5245a463a0cd5802
@@ -8,22 +8,22 @@ class BaseProvisioner
8
8
  return
9
9
  end
10
10
 
11
- shell_provision(%{
12
- # bash #{@scripts}/system.sh
13
- # bash #{@scripts}/grub.sh
14
- # bash #{@scripts}/python-pip.sh
15
- # bash #{@scripts}/mysql.sh
16
- # bash #{@scripts}/postgresql.sh
17
- bash #{@scripts}/php.sh
18
- # bash #{@scripts}/nginx.sh
19
- # bash #{@scripts}/composer.sh
20
- # bash #{@scripts}/redis.sh
21
- # bash #{@scripts}/memcache.sh
22
- # bash #{@scripts}/sqlite.sh
23
- # bash #{@scripts}/nodejs.sh
24
- # bash #{@scripts}/beanstalkd.sh
25
- #bash #{@scripts}/xdebug.sh
26
- }, nil, true)
11
+ # shell_provision(%{
12
+ # bash #{@scripts}/system.sh
13
+ # bash #{@scripts}/grub.sh
14
+ # bash #{@scripts}/mysql.sh
15
+ # bash #{@scripts}/postgresql.sh
16
+ # bash #{@scripts}/php.sh
17
+ # bash #{@scripts}/nginx.sh
18
+ # bash #{@scripts}/composer.sh
19
+ # bash #{@scripts}/redis.sh
20
+ # bash #{@scripts}/memcache.sh
21
+ # bash #{@scripts}/sqlite.sh
22
+ # bash #{@scripts}/nodejs.sh
23
+ # bash #{@scripts}/beanstalkd.sh
24
+ # bash #{@scripts}/xdebug.sh
25
+ # bash #{@scripts}/python-pip.sh
26
+ # }, nil, true)
27
27
 
28
28
  # Minimize The Disk Image
29
29
  shell_provision(%{
@@ -1,7 +1,10 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- apt-get remove -y python-pip
3
+ dir=/tmp/python
4
+
5
+ # Install Python Pip
6
+ mkdir $dir
7
+ cd $dir
4
8
  wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py
5
9
  python get-pip.py
6
-
7
- #pip install requests[security]
10
+ rm -r $dir
@@ -4,15 +4,15 @@
4
4
  wget xdebug.org/files/xdebug-2.4.0rc3.tgz -P /tmp/xdebug
5
5
  cd /tmp/xdebug
6
6
  tar -xvzf xdebug-2.4.0rc3.tgz
7
- cd xdebug-2.4.0RC3
7
+ cd /tmp/xdebug/xdebug-2.4.0RC3
8
8
  phpize
9
- bash ./configure
9
+ ./configure
10
10
  make
11
11
  cp modules/xdebug.so /usr/lib/php/20151012
12
12
 
13
13
  echo "zend_extension = /usr/lib/php/20151012/xdebug.so" >> '/etc/php/7.0/cli/php.ini'
14
14
 
15
- Configure
15
+ # Configure
16
16
  config='/etc/php/7.0/fpm/conf.d/20-xdebug.ini'
17
17
  touch $config
18
18
 
@@ -30,7 +30,7 @@ class AmazonWebServices
30
30
  def provision
31
31
 
32
32
  if args.find?('install', false)
33
- shell_provision("bash #{@scripts}/awscli.sh", nil, false)
33
+ shell_provision("bash #{@scripts}/awscli.sh", nil, true)
34
34
  end
35
35
 
36
36
  end
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module Conductor
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-conductor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Cuyar