vagrant-conductor 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/vagrant/conductor/modules/_base/_base.rb +16 -16
- data/lib/vagrant/conductor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d99126e3010e5df38cbea4b54cdd7b29704c6ac9
|
4
|
+
data.tar.gz: 7be78a68811cd8dc8f63d55584ed27252affcf0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e4b2d158b41644ff630b7a6ca4a860138211025cb5b9487011307b076235cdcf8f397068d2c634d2bc7f0a96d26f8b407671553a16b711e0134bde19d77c01c
|
7
|
+
data.tar.gz: 870902bffa71a47fbe872aa9896f0ebf917345b3adecf12e56d93e2aca8d38e2a825794ccd954093d9aec07ced8e5f8867b33efe09b807bef6eda3f9874933a8
|
@@ -8,22 +8,22 @@ class BaseProvisioner
|
|
8
8
|
return
|
9
9
|
end
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
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(%{
|