linux_provision 0.9.4 → 0.9.5

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.
@@ -1,5 +1,8 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <module type="RUBY_MODULE" version="4">
3
+ <component name="CompassSettings">
4
+ <option name="compassSupportEnabled" value="true" />
5
+ </component>
3
6
  <component name="FacetManager">
4
7
  <facet type="gem" name="Gem">
5
8
  <configuration>
@@ -201,7 +204,7 @@
201
204
  <orderEntry type="sourceFolder" forTests="false" />
202
205
  <orderEntry type="library" scope="PROVIDED" name="addressable (v2.3.6, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
203
206
  <orderEntry type="library" scope="PROVIDED" name="blankslate (v2.1.2.4, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
204
- <orderEntry type="library" scope="PROVIDED" name="bundler (v1.6.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
207
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v1.6.0, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
205
208
  <orderEntry type="library" scope="PROVIDED" name="daemons (v1.1.9, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
206
209
  <orderEntry type="library" scope="PROVIDED" name="debugger-ruby_core_source (v1.3.5, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
207
210
  <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
@@ -224,17 +227,12 @@
224
227
  <orderEntry type="library" scope="PROVIDED" name="rake (v10.3.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
225
228
  <orderEntry type="library" scope="PROVIDED" name="redcarpet (v3.1.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
226
229
  <orderEntry type="library" scope="PROVIDED" name="rspec (v3.0.0, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
227
- <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.0.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
228
- <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.0.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
229
- <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.0.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
230
- <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.0.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
231
230
  <orderEntry type="library" scope="PROVIDED" name="ruby-debug-base19x (v0.11.30.pre15, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
232
231
  <orderEntry type="library" scope="PROVIDED" name="ruby-debug-ide (v0.4.23.beta1, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
233
232
  <orderEntry type="library" scope="PROVIDED" name="script_executor (v1.4.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
234
233
  <orderEntry type="library" scope="PROVIDED" name="showoff (v0.9.8.1, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
235
234
  <orderEntry type="library" scope="PROVIDED" name="sinatra (v1.4.5, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
236
235
  <orderEntry type="library" scope="PROVIDED" name="sinatra-websocket (v0.3.0, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
237
- <orderEntry type="library" scope="PROVIDED" name="text-interpolator (v1.1.4, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
238
236
  <orderEntry type="library" scope="PROVIDED" name="thin (v1.6.2, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
239
237
  <orderEntry type="library" scope="PROVIDED" name="thor (v0.19.1, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
240
238
  <orderEntry type="library" scope="PROVIDED" name="tilt (v1.4.1, RVM: ruby-1.9.3-p545 [linux_provision]) [gem]" level="application" />
data/CHANGES CHANGED
@@ -18,4 +18,8 @@
18
18
 
19
19
  == Version 0.9.4
20
20
 
21
+ * Bug fix.
22
+
23
+ == Version 0.9.5
24
+
21
25
  * Bug fix.
@@ -28,4 +28,9 @@ class LinuxProvision < GenericProvision
28
28
  end
29
29
  end
30
30
 
31
+ def mysql_drop_schemas
32
+ env[:mysql][:app_schemas].each do |schema|
33
+ run(server_info, "mysql_drop_schema", env.merge(schema: schema))
34
+ end
35
+ end
31
36
  end
@@ -1,12 +1,6 @@
1
1
  #!/bin/sh
2
2
 
3
- [test]
4
- # Test
5
-
6
- echo "test"
7
-
8
-
9
- ##############################
3
+ #######################################
10
4
  [prepare]
11
5
  # Updates linux core packages
12
6
 
@@ -17,8 +11,22 @@ sudo apt-get install -y g++
17
11
  sudo apt-get install -y subversion
18
12
  sudo apt-get install -y git
19
13
 
20
-
21
- ##############################
14
+ # to support rvm
15
+ sudo apt-get install -y gawk
16
+ sudo apt-get install -y make
17
+ sudo apt-get install -y libyaml-dev
18
+ sudo apt-get install -y libsqlite3-dev
19
+ sudo apt-get install -y sqlite3
20
+ sudo apt-get install -y autoconf
21
+ sudo apt-get install -y libgdbm-dev
22
+ sudo apt-get install -y libncurses5-dev
23
+ sudo apt-get install -y automake, libtool
24
+ sudo apt-get install -y bison
25
+ sudo apt-get install -y pkg-config
26
+ sudo apt-get install -y libffi-dev
27
+
28
+
29
+ #######################################
22
30
  [rvm]
23
31
  # Installs rvm
24
32
 
@@ -27,7 +35,7 @@ curl -L https://get.rvm.io | bash
27
35
  sudo chown -R vagrant /opt/vagrant_ruby
28
36
 
29
37
 
30
- ##############################
38
+ #######################################
31
39
  [ruby]
32
40
  # Installs ruby
33
41
 
@@ -38,21 +46,21 @@ source $USER_HOME/.rvm/scripts/rvm
38
46
  rvm install ruby-1.9.3
39
47
 
40
48
 
41
- ##############################
49
+ #######################################
42
50
  [node]
43
51
  # Installs node
44
52
 
45
53
  sudo apt-get install -y node
46
54
 
47
55
 
48
- ##############################
56
+ #######################################
49
57
  [jenkins]
50
58
  # Installs jenkins
51
59
 
52
60
  sudo apt-get install -y jenkins
53
61
 
54
62
 
55
- ##############################
63
+ #######################################
56
64
  [postgres]
57
65
  # Installs postgres server
58
66
 
@@ -61,12 +69,14 @@ sudo apt-get install -y libpq-dev
61
69
  sudo apt-get install -y postgresql
62
70
 
63
71
 
64
- ##############################
72
+ #######################################
65
73
  [mysql]
66
74
  # Installs mysql server
67
75
 
68
- MYSQL_PASSWORD='#{mysql.password}'
76
+ PATH=$PATH:/usr/local/bin
69
77
 
78
+ MYSQL_USER='#{mysql.user}'
79
+ MYSQL_PASSWORD='#{mysql.password}'
70
80
  MYSQL_SERVER_VERSION='5.5'
71
81
 
72
82
  sudo apt-get install -y libmysqlclient-dev ruby-dev
@@ -79,8 +89,10 @@ sudo debconf-set-selections <<< "mysql-server-$MYSQL_SERVER_VERSION mysql-server
79
89
 
80
90
  sudo apt-get -y install mysql-server
81
91
 
92
+ #sudo mysqladmin -u$MYSQL_USER password $MYSQL_PASSWORD
82
93
 
83
- ##############################
94
+
95
+ #######################################
84
96
  [postgres_create_user]
85
97
 
86
98
  PATH=$PATH:/usr/local/bin
@@ -90,7 +102,8 @@ APP_PASSWORD='#{postgres.app_password}'
90
102
 
91
103
  sudo -u postgres psql -c "CREATE USER $APP_USER WITH PASSWORD '$APP_USER'"
92
104
 
93
- ##############################
105
+
106
+ #######################################
94
107
  [postgres_drop_user]
95
108
 
96
109
  PATH=$PATH:/usr/local/bin
@@ -100,7 +113,7 @@ APP_USER='#{postgres.app_user}'
100
113
  sudo -u postgres psql -c "DROP USER $APP_USER"
101
114
 
102
115
 
103
- ##############################
116
+ #######################################
104
117
  [postgres_create_schema]
105
118
 
106
119
  SCHEMA='#{schema}'
@@ -112,10 +125,9 @@ ENCODING_STRING="WITH ENCODING = 'UTF-8' LC_CTYPE = 'en_US.utf8' LC_COLLATE = 'e
112
125
 
113
126
  sudo -u postgres psql -c "CREATE DATABASE $SCHEMA $ENCODING_STRING"
114
127
  sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE $SCHEMA to $APP_USER"
115
- #createdb -U $APP_USER $SCHEMA
116
128
 
117
129
 
118
- ##############################
130
+ #######################################
119
131
  [postgres_drop_schema]
120
132
 
121
133
  PATH=$PATH:/usr/local/bin
@@ -125,21 +137,21 @@ SCHEMA='#{schema}'
125
137
  sudo -u postgres psql -c "DROP DATABASE $SCHEMA"
126
138
 
127
139
 
128
- ##############################
140
+ #######################################
129
141
  [mysql_create_user]
130
142
 
131
- APP_USER='#{mysql.app_user}'
132
- HOST_NAME='#{mysql.hostname}'
143
+ PATH=$PATH:/usr/local/bin
133
144
 
145
+ HOST_NAME='#{mysql.hostname}'
146
+ APP_USER='#{mysql.app_user}'
134
147
  MYSQL_USER='#{mysql.user}'
135
148
  MYSQL_PASSWORD='#{mysql.password}'
136
149
 
137
- mysql -h $HOST_NAME -u root -p"root" -e "grant all privileges on *.* to '$APP_USER'@'$HOST_NAME' identified by '$APP_USER' with grant option;"
138
- mysql -h localhost -u $MYSQL_USER -p"$MYSQL_PASSWORD" -e "grant all privileges on *.* to '$APP_USER'@'%' identified by '$APP_USER' with grant option;"
139
- mysql -h localhost -u $MYSQL_USER -p"$MYSQL_PASSWORD" -e "CREATE USER '$APP_USER'@'localhost' IDENTIFIED BY '$APP_USER';"
150
+ mysql -h $HOST_NAME -u$MYSQL_USER -p$MYSQL_PASSWORD -e "CREATE USER '$APP_USER'@'$HOST_NAME' IDENTIFIED BY '$APP_USER';"
151
+ mysql -h $HOST_NAME -u$MYSQL_USER -p$MYSQL_PASSWORD -e "GRANT ALL PRIVILEGES ON *.* to '$APP_USER'@'$HOST_NAME' IDENTIFIED BY '$APP_USER' WITH GRANT OPTION;"
140
152
 
141
153
 
142
- ##############################
154
+ #######################################
143
155
  [mysql_drop_user]
144
156
 
145
157
  APP_USER='#{mysql.app_user}'
@@ -151,26 +163,37 @@ MYSQL_PASSWORD='#{mysql.password}'
151
163
  mysql -h $HOST_NAME -u $MYSQL_USER -p"$MYSQL_PASSWORD" -e "DROP USER '$APP_USER'@'$HOST_NAME';"
152
164
 
153
165
 
154
- ##############################
166
+ #######################################
155
167
  [mysql_create_schema]
156
168
 
169
+ PATH=$PATH:/usr/local/bin
170
+
157
171
  SCHEMA='#{schema}'
158
172
 
159
173
  HOST_NAME='#{mysql.hostname}'
160
-
161
174
  MYSQL_USER='#{mysql.user}'
162
175
  MYSQL_PASSWORD='#{mysql.password}'
163
176
 
164
- mysql -h $HOST_NAME -u $MYSQL_USER -p"$MYSQL_PASSWORD" -e "create database $SCHEMA;"
177
+ mysql -h $HOST_NAME -u$MYSQL_USER -p$MYSQL_PASSWORD -e "create database $SCHEMA;"
165
178
 
166
179
 
167
- ##############################
180
+ #######################################
168
181
  [mysql_drop_schema]
169
182
 
183
+ PATH=$PATH:/usr/local/bin
170
184
 
171
- ##############################
172
- # http://www.labelmedia.co.uk/blog/setting-up-selenium-server-on-a-headless-jenkins-ci-build-machine.html
185
+ SCHEMA='#{schema}'
186
+
187
+ HOST_NAME='#{mysql.hostname}'
188
+ MYSQL_USER='#{mysql.user}'
189
+ MYSQL_PASSWORD='#{mysql.password}'
190
+
191
+ mysql -h $HOST_NAME -u$MYSQL_USER -p$MYSQL_PASSWORD -e "drop database $SCHEMA;"
192
+
193
+
194
+ #######################################
173
195
  [selenium]
196
+ # http://www.labelmedia.co.uk/blog/setting-up-selenium-server-on-a-headless-jenkins-ci-build-machine.html
174
197
  # Installs selenium server
175
198
 
176
199
  wget http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.2.jar
@@ -191,7 +214,7 @@ sudo apt-get install -y firefox
191
214
  # export DISPLAY=":99" && java -jar /var/lib/selenium/selenium-server.jar
192
215
 
193
216
 
194
- ##############################
217
+ #######################################
195
218
  [selenium2]
196
219
  cat > xvfb <<END
197
220
  #!/bin/bash
@@ -1,3 +1,3 @@
1
1
  class LinuxProvision
2
- VERSION = "0.9.4"
2
+ VERSION = "0.9.5"
3
3
  end
@@ -9,29 +9,36 @@ class LinuxInstall < Thor
9
9
  attr_reader :installer
10
10
  end
11
11
 
12
- desc "all", "Installs all required packages"
13
- def all
12
+ desc "general", "Installs general packages"
13
+ def general
14
14
  invoke :prepare
15
15
 
16
16
  invoke :rvm
17
-
18
17
  invoke :ruby
19
18
 
20
- invoke :git
21
19
  invoke :node
22
20
  invoke :jenkins
23
21
  invoke :postgres
24
22
  invoke :mysql
25
23
 
24
+ # invoke :selenium
25
+ end
26
+
27
+ desc "app", "Installs app"
28
+ def app
26
29
  invoke :postgres_create_user
27
30
  invoke :postgres_create_schemas
28
31
 
29
- # invoke :mysql_create_user
30
- # invoke :mysql_create_schemas
32
+ invoke :mysql_create_user
33
+ invoke :mysql_create_schemas
31
34
 
32
- # invoke :selenium
35
+ invoke :project
36
+ end
33
37
 
34
- # invoke :project
38
+ desc "all", "Installs all required packages"
39
+ def all
40
+ invoke :general
41
+ invoke :app
35
42
  end
36
43
 
37
44
  desc "postgres_create_schemas", "Initializes postgres schemas"
@@ -48,4 +55,15 @@ class LinuxInstall < Thor
48
55
  def mysql_create_schemas
49
56
  LinuxInstall.installer.mysql_create_schemas
50
57
  end
58
+
59
+ desc "mysql_drop_schemas", "Drops mysql schemas"
60
+ def mysql_drop_schemas
61
+ LinuxInstall.installer.mysql_drop_schemas
62
+ end
63
+
64
+ desc "ssh", "ssh"
65
+ def ssh
66
+ #system "thor ssh:cp_key vagrant 22.22.22.22"
67
+ system "ssh vagrant@22.22.22.22"
68
+ end
51
69
  end
data/thor/ssh.thor ADDED
@@ -0,0 +1,52 @@
1
+ require "highline/import"
2
+ require 'script_executor/executable'
3
+ require 'script_executor/script_locator'
4
+ require 'file_utils/file_utils'
5
+
6
+ class Ssh < Thor
7
+ include Executable, ScriptLocator, FileUtils
8
+
9
+ desc "gen_key", "Generates ssh key"
10
+ def gen_key
11
+ scripts = scripts(__FILE__)
12
+
13
+ execute { evaluate_script_body(scripts['gen_key'], binding) }
14
+ end
15
+
16
+ desc "cp_key $host", "Copies public key to remote host"
17
+ def cp_key(user, host)
18
+ scripts = scripts(__FILE__)
19
+
20
+ execute { evaluate_script_body(scripts['cp_key1'], binding) }
21
+
22
+ execute(:remote => true, :domain => host, :user => user) do
23
+ evaluate_script_body(scripts['cp_key2'], binding)
24
+ end
25
+ end
26
+ end
27
+
28
+ __END__
29
+
30
+ [gen_key]
31
+
32
+ echo "Generating ssh key..."
33
+
34
+ cd ~/.ssh
35
+ ssh-keygen
36
+
37
+ [cp_key1]
38
+
39
+ echo "Copying public key to remote server..."
40
+
41
+ echo <%= user %>
42
+ echo <%= host %>
43
+
44
+ scp ~/.ssh/id_rsa.pub <%= user %>@<%= host %>:~/pubkey.txt
45
+
46
+ [cp_key2]
47
+
48
+ mkdir -p ~/.ssh
49
+ chmod 700 .ssh
50
+ cat pubkey.txt >> ~/.ssh/authorized_keys
51
+ rm ~/pubkey.txt
52
+ chmod 600 ~/.ssh/*
metadata CHANGED
@@ -1,97 +1,110 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linux_provision
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Alexander Shvets
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2014-06-25 00:00:00.000000000 Z
12
+ date: 2014-06-26 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: text-interpolator
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
- - - "~>"
19
+ - - ~>
18
20
  - !ruby/object:Gem::Version
19
21
  version: '1.0'
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
- - - "~>"
27
+ - - ~>
25
28
  - !ruby/object:Gem::Version
26
29
  version: '1.0'
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: script_executor
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
- - - "~>"
35
+ - - ~>
32
36
  - !ruby/object:Gem::Version
33
37
  version: '1.4'
34
38
  type: :runtime
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
- - - "~>"
43
+ - - ~>
39
44
  - !ruby/object:Gem::Version
40
45
  version: '1.4'
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: thor
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
- - - "~>"
51
+ - - ~>
46
52
  - !ruby/object:Gem::Version
47
53
  version: '0.19'
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
- - - "~>"
59
+ - - ~>
53
60
  - !ruby/object:Gem::Version
54
61
  version: '0.19'
55
62
  - !ruby/object:Gem::Dependency
56
63
  name: json_pure
57
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
58
66
  requirements:
59
- - - "~>"
67
+ - - ~>
60
68
  - !ruby/object:Gem::Version
61
69
  version: '1.8'
62
70
  type: :runtime
63
71
  prerelease: false
64
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
65
74
  requirements:
66
- - - "~>"
75
+ - - ~>
67
76
  - !ruby/object:Gem::Version
68
77
  version: '1.8'
69
78
  - !ruby/object:Gem::Dependency
70
79
  name: gemspec_deps_gen
71
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
72
82
  requirements:
73
- - - "~>"
83
+ - - ~>
74
84
  - !ruby/object:Gem::Version
75
85
  version: '1.1'
76
86
  type: :development
77
87
  prerelease: false
78
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
79
90
  requirements:
80
- - - "~>"
91
+ - - ~>
81
92
  - !ruby/object:Gem::Version
82
93
  version: '1.1'
83
94
  - !ruby/object:Gem::Dependency
84
95
  name: gemcutter
85
96
  requirement: !ruby/object:Gem::Requirement
97
+ none: false
86
98
  requirements:
87
- - - "~>"
99
+ - - ~>
88
100
  - !ruby/object:Gem::Version
89
101
  version: '0.7'
90
102
  type: :development
91
103
  prerelease: false
92
104
  version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
93
106
  requirements:
94
- - - "~>"
107
+ - - ~>
95
108
  - !ruby/object:Gem::Version
96
109
  version: '0.7'
97
110
  description: Library for building Linux computer provisioning
@@ -100,18 +113,18 @@ executables: []
100
113
  extensions: []
101
114
  extra_rdoc_files: []
102
115
  files:
103
- - ".gitignore"
104
- - ".idea/.name"
105
- - ".idea/.rakeTasks"
106
- - ".idea/encodings.xml"
107
- - ".idea/linux_provision.iml"
108
- - ".idea/misc.xml"
109
- - ".idea/modules.xml"
110
- - ".idea/scopes/scope_settings.xml"
111
- - ".idea/vcs.xml"
112
- - ".linux_provision.json"
113
- - ".ruby-gemset"
114
- - ".ruby-version"
116
+ - .gitignore
117
+ - .idea/.name
118
+ - .idea/.rakeTasks
119
+ - .idea/encodings.xml
120
+ - .idea/linux_provision.iml
121
+ - .idea/misc.xml
122
+ - .idea/modules.xml
123
+ - .idea/scopes/scope_settings.xml
124
+ - .idea/vcs.xml
125
+ - .linux_provision.json
126
+ - .ruby-gemset
127
+ - .ruby-version
115
128
  - CHANGES
116
129
  - Gemfile
117
130
  - Gemfile.lock
@@ -169,29 +182,34 @@ files:
169
182
  - thor/demo_scripts.sh
170
183
  - thor/docker.thor
171
184
  - thor/linux_install.thor
185
+ - thor/ssh.thor
172
186
  homepage: http://github.com/shvets/linux_provision
173
187
  licenses:
174
188
  - MIT
175
- metadata: {}
176
189
  post_install_message:
177
190
  rdoc_options: []
178
191
  require_paths:
179
192
  - lib
180
193
  required_ruby_version: !ruby/object:Gem::Requirement
194
+ none: false
181
195
  requirements:
182
- - - ">="
196
+ - - ! '>='
183
197
  - !ruby/object:Gem::Version
184
198
  version: '0'
199
+ segments:
200
+ - 0
201
+ hash: 1955455709235512256
185
202
  required_rubygems_version: !ruby/object:Gem::Requirement
203
+ none: false
186
204
  requirements:
187
- - - ">="
205
+ - - ! '>='
188
206
  - !ruby/object:Gem::Version
189
207
  version: '0'
190
208
  requirements: []
191
209
  rubyforge_project:
192
- rubygems_version: 2.2.2
210
+ rubygems_version: 1.8.23
193
211
  signing_key:
194
- specification_version: 4
212
+ specification_version: 3
195
213
  summary: Library for building Linux computer provisioning
196
214
  test_files:
197
215
  - spec/linux_install_spec.rb
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 67bdabcb3c624c52ba16480c542f22f787e99cdf
4
- data.tar.gz: 18653423057d716c0a9d05c47439d070c7c46e17
5
- SHA512:
6
- metadata.gz: 6f861f304edfff539a0043511a30b1e38a033d82df1d00174d4e68e11aac9eee41121ed6f3be0eb5747e126df7494eb64b00985fcc0f610aa680dcfc5b51190f
7
- data.tar.gz: a393c7b4d03c02ca0d096e19a4db96c6cbb4c3739713bff428a9b45d4bafe541e6183846845b63df36fffec276e41dd2283d2ea577737f7f5b9ccf48021cb51e