madscience 0.0.5 → 0.0.6
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8309336649c69359fcfa08f48ada65d499979bdf
|
|
4
|
+
data.tar.gz: 1f28a341a59b840b07d5cee4289288dbb672e6ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 091bd076d4678c9fde9b75a1f2615ad44d29d6f45fe9f0e4bcca0fc22b6ab1e18299c45c627b1a3856578c3e05c3e864da5986310a9f651e5dea8b9724af324d
|
|
7
|
+
data.tar.gz: 6731dc359686bdb341ed7de99a11e7ebd2dc899fe6d7c720c9467eb1f2690894078982289b6d7fa6f8e2efe63f404a8eb8f4b2134d4259549c695c0b6e8deb8a
|
data/README.md
CHANGED
|
@@ -103,10 +103,17 @@ you'll want to run it like this:
|
|
|
103
103
|
|
|
104
104
|
# No RVM? Change "rvmsudo" to "sudo"
|
|
105
105
|
bundle install
|
|
106
|
+
sudo rm -rf cookbooks/* # Blow away root-owned cookbooks on later runs
|
|
106
107
|
librarian-chef install
|
|
107
108
|
rvmsudo bundle exec bin/madscience setup
|
|
108
109
|
bundle exec bin/madscience clone
|
|
109
110
|
|
|
111
|
+
## Problems?
|
|
112
|
+
|
|
113
|
+
It's easy to get permissions problems. You're running some commands as sudo, and other commands not as sudo. When this happens, the first thing to do is to blow away (with sudo) the cookbooks directory:
|
|
114
|
+
|
|
115
|
+
sudo rm -rf cookbooks/*
|
|
116
|
+
|
|
110
117
|
## License
|
|
111
118
|
|
|
112
119
|
* Author:: Noah Gibbs (the.codefolio.guy@gmail.com)
|
data/lib/madscience/version.rb
CHANGED
|
File without changes
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# attributes in an attributes file, like the one
|
|
14
14
|
# in vagrant-cookbook/attributes/default.rb.
|
|
15
15
|
node.default['vagrant']['version'] = '1.7.1'
|
|
16
|
-
node.default['vagrant']['plugins'] = [ 'vagrant-omnibus', 'vagrant-librarian-chef' ]
|
|
16
|
+
node.default['vagrant']['plugins'] = [ 'vagrant-omnibus', 'vagrant-librarian-chef', 'vagrant-aws', 'vagrant-digitalocean', 'vagrant-linode' ]
|
|
17
17
|
|
|
18
18
|
case node['platform_family']
|
|
19
19
|
when 'fedora'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: madscience
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Noah Gibbs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -317,7 +317,7 @@ files:
|
|
|
317
317
|
- lib/madscience.rb
|
|
318
318
|
- lib/madscience/version.rb
|
|
319
319
|
- madscience.gemspec
|
|
320
|
-
- new_gem_version.
|
|
320
|
+
- new_gem_version.sh
|
|
321
321
|
- node-data.json
|
|
322
322
|
- site-cookbooks/madscience-vagrant-cookbook/CHANGELOG.md
|
|
323
323
|
- site-cookbooks/madscience-vagrant-cookbook/README.md
|