ec2_amitools 1.0.2

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.
Files changed (102) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +54 -0
  3. data/bin/console +14 -0
  4. data/bin/ec2-ami-tools-version +6 -0
  5. data/bin/ec2-bundle-image +6 -0
  6. data/bin/ec2-bundle-vol +6 -0
  7. data/bin/ec2-delete-bundle +6 -0
  8. data/bin/ec2-download-bundle +6 -0
  9. data/bin/ec2-migrate-bundle +6 -0
  10. data/bin/ec2-migrate-manifest +6 -0
  11. data/bin/ec2-unbundle +6 -0
  12. data/bin/ec2-upload-bundle +6 -0
  13. data/bin/setup +8 -0
  14. data/etc/ec2/amitools/cert-ec2-cn-north-1.pem +28 -0
  15. data/etc/ec2/amitools/cert-ec2-gov.pem +17 -0
  16. data/etc/ec2/amitools/cert-ec2.pem +23 -0
  17. data/etc/ec2/amitools/mappings.csv +9 -0
  18. data/lib/ec2/amitools/bundle.rb +251 -0
  19. data/lib/ec2/amitools/bundle_base.rb +58 -0
  20. data/lib/ec2/amitools/bundleimage.rb +94 -0
  21. data/lib/ec2/amitools/bundleimageparameters.rb +42 -0
  22. data/lib/ec2/amitools/bundlemachineparameters.rb +60 -0
  23. data/lib/ec2/amitools/bundleparameters.rb +120 -0
  24. data/lib/ec2/amitools/bundlevol.rb +240 -0
  25. data/lib/ec2/amitools/bundlevolparameters.rb +164 -0
  26. data/lib/ec2/amitools/crypto.rb +379 -0
  27. data/lib/ec2/amitools/decryptmanifest.rb +20 -0
  28. data/lib/ec2/amitools/defaults.rb +12 -0
  29. data/lib/ec2/amitools/deletebundle.rb +212 -0
  30. data/lib/ec2/amitools/deletebundleparameters.rb +78 -0
  31. data/lib/ec2/amitools/downloadbundle.rb +161 -0
  32. data/lib/ec2/amitools/downloadbundleparameters.rb +84 -0
  33. data/lib/ec2/amitools/exception.rb +86 -0
  34. data/lib/ec2/amitools/fileutil.rb +219 -0
  35. data/lib/ec2/amitools/format.rb +127 -0
  36. data/lib/ec2/amitools/instance-data.rb +97 -0
  37. data/lib/ec2/amitools/manifest_wrapper.rb +132 -0
  38. data/lib/ec2/amitools/manifestv20070829.rb +361 -0
  39. data/lib/ec2/amitools/manifestv20071010.rb +403 -0
  40. data/lib/ec2/amitools/manifestv3.rb +331 -0
  41. data/lib/ec2/amitools/mapids.rb +148 -0
  42. data/lib/ec2/amitools/migratebundle.rb +222 -0
  43. data/lib/ec2/amitools/migratebundleparameters.rb +173 -0
  44. data/lib/ec2/amitools/migratemanifest.rb +225 -0
  45. data/lib/ec2/amitools/migratemanifestparameters.rb +118 -0
  46. data/lib/ec2/amitools/minimalec2.rb +116 -0
  47. data/lib/ec2/amitools/parameter_exceptions.rb +34 -0
  48. data/lib/ec2/amitools/parameters_base.rb +168 -0
  49. data/lib/ec2/amitools/region.rb +93 -0
  50. data/lib/ec2/amitools/s3toolparameters.rb +183 -0
  51. data/lib/ec2/amitools/showversion.rb +12 -0
  52. data/lib/ec2/amitools/syschecks.rb +27 -0
  53. data/lib/ec2/amitools/tool_base.rb +224 -0
  54. data/lib/ec2/amitools/unbundle.rb +107 -0
  55. data/lib/ec2/amitools/unbundleparameters.rb +65 -0
  56. data/lib/ec2/amitools/uploadbundle.rb +361 -0
  57. data/lib/ec2/amitools/uploadbundleparameters.rb +108 -0
  58. data/lib/ec2/amitools/util.rb +532 -0
  59. data/lib/ec2/amitools/version.rb +33 -0
  60. data/lib/ec2/amitools/xmlbuilder.rb +237 -0
  61. data/lib/ec2/amitools/xmlutil.rb +55 -0
  62. data/lib/ec2/common/constants.rb +16 -0
  63. data/lib/ec2/common/curl.rb +110 -0
  64. data/lib/ec2/common/headers.rb +95 -0
  65. data/lib/ec2/common/headersv4.rb +173 -0
  66. data/lib/ec2/common/http.rb +333 -0
  67. data/lib/ec2/common/s3support.rb +231 -0
  68. data/lib/ec2/common/signature.rb +68 -0
  69. data/lib/ec2/oem/LICENSE.txt +58 -0
  70. data/lib/ec2/oem/open4.rb +399 -0
  71. data/lib/ec2/platform/base/architecture.rb +26 -0
  72. data/lib/ec2/platform/base/constants.rb +54 -0
  73. data/lib/ec2/platform/base/pipeline.rb +181 -0
  74. data/lib/ec2/platform/base.rb +57 -0
  75. data/lib/ec2/platform/current.rb +55 -0
  76. data/lib/ec2/platform/linux/architecture.rb +35 -0
  77. data/lib/ec2/platform/linux/constants.rb +23 -0
  78. data/lib/ec2/platform/linux/fstab.rb +99 -0
  79. data/lib/ec2/platform/linux/identity.rb +16 -0
  80. data/lib/ec2/platform/linux/image.rb +811 -0
  81. data/lib/ec2/platform/linux/mtab.rb +74 -0
  82. data/lib/ec2/platform/linux/pipeline.rb +40 -0
  83. data/lib/ec2/platform/linux/rsync.rb +114 -0
  84. data/lib/ec2/platform/linux/tar.rb +124 -0
  85. data/lib/ec2/platform/linux/uname.rb +50 -0
  86. data/lib/ec2/platform/linux.rb +83 -0
  87. data/lib/ec2/platform/solaris/architecture.rb +28 -0
  88. data/lib/ec2/platform/solaris/constants.rb +30 -0
  89. data/lib/ec2/platform/solaris/fstab.rb +43 -0
  90. data/lib/ec2/platform/solaris/identity.rb +16 -0
  91. data/lib/ec2/platform/solaris/image.rb +327 -0
  92. data/lib/ec2/platform/solaris/mtab.rb +29 -0
  93. data/lib/ec2/platform/solaris/pipeline.rb +40 -0
  94. data/lib/ec2/platform/solaris/rsync.rb +24 -0
  95. data/lib/ec2/platform/solaris/tar.rb +36 -0
  96. data/lib/ec2/platform/solaris/uname.rb +21 -0
  97. data/lib/ec2/platform/solaris.rb +38 -0
  98. data/lib/ec2/platform.rb +69 -0
  99. data/lib/ec2/version.rb +8 -0
  100. data/lib/ec2_amitools +1 -0
  101. data/lib/ec2_amitools.rb +7 -0
  102. metadata +184 -0
@@ -0,0 +1,29 @@
1
+ # Copyright 2008-2014 Amazon.com, Inc. or its affiliates. All Rights
2
+ # Reserved. Licensed under the Amazon Software License (the
3
+ # "License"). You may not use this file except in compliance with the
4
+ # License. A copy of the License is located at
5
+ # http://aws.amazon.com/asl or in the "license" file accompanying this
6
+ # file. This file is distributed on an "AS IS" BASIS, WITHOUT
7
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
8
+ # the License for the specific language governing permissions and
9
+ # limitations under the License.
10
+
11
+ require 'ec2/platform/linux/mtab'
12
+
13
+ module EC2
14
+ module Platform
15
+ module Solaris
16
+ LOCAL_FS_TYPES = [
17
+ 'ext2', 'ext3', 'xfs', 'jfs', 'reiserfs', 'tmpfs',
18
+ 'ufs', 'sharefs', 'dev', 'devfs', 'ctfs', 'mntfs',
19
+ 'proc', 'lofs', 'objfs', 'fd', 'autofs'
20
+ ]
21
+ class Mtab < EC2::Platform::Linux::Mtab
22
+ LOCATION = '/etc/mnttab'
23
+ def initialize(filename = LOCATION)
24
+ super filename
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,40 @@
1
+ # Copyright 2008-2014 Amazon.com, Inc. or its affiliates. All Rights
2
+ # Reserved. Licensed under the Amazon Software License (the
3
+ # "License"). You may not use this file except in compliance with the
4
+ # License. A copy of the License is located at
5
+ # http://aws.amazon.com/asl or in the "license" file accompanying this
6
+ # file. This file is distributed on an "AS IS" BASIS, WITHOUT
7
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
8
+ # the License for the specific language governing permissions and
9
+ # limitations under the License.
10
+
11
+ #------------------------------------------------------------------------------
12
+ require 'ec2/platform/base/pipeline'
13
+
14
+ #------------------------------------------------------------------------------
15
+ module EC2
16
+ #----------------------------------------------------------------------------
17
+ module Platform
18
+ #--------------------------------------------------------------------------
19
+ module Solaris
20
+ #------------------------------------------------------------------------
21
+ class Pipeline < EC2::Platform::Base::Pipeline
22
+
23
+ #----------------------------------------------------------------------
24
+ # Given a pipeline of commands, modify it so that we can obtain
25
+ # the exit status of each pipeline stage by reading the tempfile
26
+ # associated with that stage.
27
+ def pipestatus(cmd)
28
+ command = cmd
29
+ command << ';' unless cmd.rstrip[-1,1] == ';'
30
+ command << ' ' unless cmd[-1,1] == ' '
31
+ list = []
32
+ @tempfiles.each_with_index do |file, index|
33
+ list << "echo \\${PIPESTATUS[#{index}]} > #{file.path}"
34
+ end
35
+ command + list.join(' & ')
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,24 @@
1
+ # Copyright 2008-2014 Amazon.com, Inc. or its affiliates. All Rights
2
+ # Reserved. Licensed under the Amazon Software License (the
3
+ # "License"). You may not use this file except in compliance with the
4
+ # License. A copy of the License is located at
5
+ # http://aws.amazon.com/asl or in the "license" file accompanying this
6
+ # file. This file is distributed on an "AS IS" BASIS, WITHOUT
7
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
8
+ # the License for the specific language governing permissions and
9
+ # limitations under the License.
10
+
11
+ require 'ec2/amitools/fileutil'
12
+ require 'ec2/platform/linux/rsync'
13
+ module EC2
14
+ module Platform
15
+ module Solaris
16
+ class Rsync < EC2::Platform::Linux::Rsync
17
+ EXECUTABLE = 'rsync'
18
+ def initialize(e=EXECUTABLE)
19
+ super e
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,36 @@
1
+ # Copyright 2008-2014 Amazon.com, Inc. or its affiliates. All Rights
2
+ # Reserved. Licensed under the Amazon Software License (the
3
+ # "License"). You may not use this file except in compliance with the
4
+ # License. A copy of the License is located at
5
+ # http://aws.amazon.com/asl or in the "license" file accompanying this
6
+ # file. This file is distributed on an "AS IS" BASIS, WITHOUT
7
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
8
+ # the License for the specific language governing permissions and
9
+ # limitations under the License.
10
+
11
+ require 'ec2/platform/linux/tar'
12
+ require 'ec2/platform/solaris/constants'
13
+ module EC2
14
+ module Platform
15
+ module Solaris
16
+ class Tar < EC2::Platform::Linux::Tar
17
+ class Command < EC2::Platform::Linux::Tar::Command
18
+ EXECUTABLE=EC2::Platform::Solaris::Constants::Utility::TAR
19
+ def initialize(e=EXECUTABLE)
20
+ super e
21
+ end
22
+ end
23
+ class Version < EC2::Platform::Linux::Tar::Version
24
+ def default
25
+ s = `#{Command.new.version.expand}`.strip
26
+ s = nil unless $? == 0
27
+ s
28
+ end
29
+ def self.current
30
+ Version.new
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,21 @@
1
+ # Copyright 2008-2014 Amazon.com, Inc. or its affiliates. All Rights
2
+ # Reserved. Licensed under the Amazon Software License (the
3
+ # "License"). You may not use this file except in compliance with the
4
+ # License. A copy of the License is located at
5
+ # http://aws.amazon.com/asl or in the "license" file accompanying this
6
+ # file. This file is distributed on an "AS IS" BASIS, WITHOUT
7
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
8
+ # the License for the specific language governing permissions and
9
+ # limitations under the License.
10
+
11
+ #-------------------------------------------------------------------------------
12
+ require 'ec2/platform/linux/uname'
13
+
14
+ module EC2
15
+ module Platform
16
+ module Solaris
17
+ class Uname < EC2::Platform::Linux::Uname
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,38 @@
1
+ # Copyright 2008-2014 Amazon.com, Inc. or its affiliates. All Rights
2
+ # Reserved. Licensed under the Amazon Software License (the
3
+ # "License"). You may not use this file except in compliance with the
4
+ # License. A copy of the License is located at
5
+ # http://aws.amazon.com/asl or in the "license" file accompanying this
6
+ # file. This file is distributed on an "AS IS" BASIS, WITHOUT
7
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
8
+ # the License for the specific language governing permissions and
9
+ # limitations under the License.
10
+
11
+ #------------------------------------------------------------------------------
12
+ require 'ec2/platform/base'
13
+ require 'ec2/platform/solaris/identity'
14
+ require 'ec2/platform/solaris/architecture'
15
+ require 'ec2/platform/solaris/fstab'
16
+ require 'ec2/platform/solaris/mtab'
17
+ require 'ec2/platform/solaris/image'
18
+ require 'ec2/platform/solaris/rsync'
19
+ require 'ec2/platform/solaris/tar'
20
+ require 'ec2/platform/solaris/uname'
21
+ require 'ec2/platform/solaris/pipeline'
22
+ require 'ec2/platform/solaris/constants'
23
+
24
+ module EC2
25
+ module Platform
26
+ module Solaris
27
+ class System < EC2::Platform::Base::System
28
+
29
+ BUNDLING_ARCHITECTURE = EC2::Platform::Solaris::Architecture.bundling
30
+
31
+ #---------------------------------------------------------------------#
32
+ def self.superuser?
33
+ return `id -u`.strip == '0'
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,69 @@
1
+ # Copyright 2008-2014 Amazon.com, Inc. or its affiliates. All Rights
2
+ # Reserved. Licensed under the Amazon Software License (the
3
+ # "License"). You may not use this file except in compliance with the
4
+ # License. A copy of the License is located at
5
+ # http://aws.amazon.com/asl or in the "license" file accompanying this
6
+ # file. This file is distributed on an "AS IS" BASIS, WITHOUT
7
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
8
+ # the License for the specific language governing permissions and
9
+ # limitations under the License.
10
+
11
+ # Wrapper around RUBY_PLATFORM
12
+ module EC2
13
+ module Platform
14
+ IMPLEMENTATIONS = [
15
+ [/darwin/i, :unix, :macosx ],
16
+ [/linux/i, :unix, :linux ],
17
+ [/freebsd/i, :unix, :freebsd],
18
+ [/netbsd/i, :unix, :netbsd ],
19
+ [/solaris/i, :unix, :solaris],
20
+ [/irix/i, :unix, :irix ],
21
+ [/cygwin/i, :unix, :cygwin ],
22
+ [/mswin/i, :win32, :mswin ],
23
+ [/mingw/i, :win32, :mingw ],
24
+ [/bccwin/i, :win32, :bccwin ],
25
+ [/wince/i, :win32, :wince ],
26
+ [/vms/i, :vms, :vms ],
27
+ [/os2/i, :os2, :os2 ],
28
+ [nil, :unknown, :unknown],
29
+ ]
30
+
31
+ ARCHITECTURES = [
32
+ [/(i\d86)/i, :i386 ],
33
+ [/x86_64/i, :x86_64 ],
34
+ [/ia64/i, :ia64 ],
35
+ [/alpha/i, :alpha ],
36
+ [/sparc/i, :sparc ],
37
+ [/mips/i, :mips ],
38
+ [/powerpc/i, :powerpc ],
39
+ [nil, :unknown ],
40
+ ]
41
+
42
+ def self.guess
43
+ os = :unknown
44
+ impl = :unknown
45
+ arch = :unknown
46
+ IMPLEMENTATIONS.each do |r, o, i|
47
+ if r and RUBY_PLATFORM =~ r
48
+ os, impl = [o, i]
49
+ break
50
+ end
51
+ end
52
+ ARCHITECTURES.each do |r, a|
53
+ if r and RUBY_PLATFORM =~ r
54
+ arch = a
55
+ break
56
+ end
57
+ end
58
+ return [os, impl, arch]
59
+ end
60
+
61
+ OS, IMPL, ARCH = guess
62
+
63
+ end
64
+ end
65
+
66
+ if __FILE__ == $0
67
+ include EC2::Platform
68
+ puts "Platform OS=#{Platform::OS}, IMPL=#{Platform::IMPL}, ARCH=#{Platform::ARCH}"
69
+ end
@@ -0,0 +1,8 @@
1
+ require 'ec2/amitools/version'
2
+
3
+ module EC2
4
+ module AMITools
5
+ VERSION_TOOLS = "#{EC2Version::PKG_VERSION}.#{EC2Version::PKG_RELEASE}".freeze
6
+ VERSION = "1.0.2"
7
+ end
8
+ end
data/lib/ec2_amitools ADDED
@@ -0,0 +1 @@
1
+ ec2
@@ -0,0 +1,7 @@
1
+ require "ec2/version"
2
+
3
+ module EC2
4
+ module AMITools
5
+
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,184 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ec2_amitools
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Alexey Bobyrev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: ec2_amitools provided by Amazon packed into a gem
42
+ email:
43
+ - alexey.bobyrev@gmail.com
44
+ executables:
45
+ - ec2-ami-tools-version
46
+ - ec2-bundle-image
47
+ - ec2-bundle-vol
48
+ - ec2-delete-bundle
49
+ - ec2-download-bundle
50
+ - ec2-migrate-bundle
51
+ - ec2-migrate-manifest
52
+ - ec2-unbundle
53
+ - ec2-upload-bundle
54
+ extensions: []
55
+ extra_rdoc_files: []
56
+ files:
57
+ - README.md
58
+ - bin/console
59
+ - bin/ec2-ami-tools-version
60
+ - bin/ec2-bundle-image
61
+ - bin/ec2-bundle-vol
62
+ - bin/ec2-delete-bundle
63
+ - bin/ec2-download-bundle
64
+ - bin/ec2-migrate-bundle
65
+ - bin/ec2-migrate-manifest
66
+ - bin/ec2-unbundle
67
+ - bin/ec2-upload-bundle
68
+ - bin/setup
69
+ - etc/ec2/amitools/cert-ec2-cn-north-1.pem
70
+ - etc/ec2/amitools/cert-ec2-gov.pem
71
+ - etc/ec2/amitools/cert-ec2.pem
72
+ - etc/ec2/amitools/mappings.csv
73
+ - lib/ec2/amitools/bundle.rb
74
+ - lib/ec2/amitools/bundle_base.rb
75
+ - lib/ec2/amitools/bundleimage.rb
76
+ - lib/ec2/amitools/bundleimageparameters.rb
77
+ - lib/ec2/amitools/bundlemachineparameters.rb
78
+ - lib/ec2/amitools/bundleparameters.rb
79
+ - lib/ec2/amitools/bundlevol.rb
80
+ - lib/ec2/amitools/bundlevolparameters.rb
81
+ - lib/ec2/amitools/crypto.rb
82
+ - lib/ec2/amitools/decryptmanifest.rb
83
+ - lib/ec2/amitools/defaults.rb
84
+ - lib/ec2/amitools/deletebundle.rb
85
+ - lib/ec2/amitools/deletebundleparameters.rb
86
+ - lib/ec2/amitools/downloadbundle.rb
87
+ - lib/ec2/amitools/downloadbundleparameters.rb
88
+ - lib/ec2/amitools/exception.rb
89
+ - lib/ec2/amitools/fileutil.rb
90
+ - lib/ec2/amitools/format.rb
91
+ - lib/ec2/amitools/instance-data.rb
92
+ - lib/ec2/amitools/manifest_wrapper.rb
93
+ - lib/ec2/amitools/manifestv20070829.rb
94
+ - lib/ec2/amitools/manifestv20071010.rb
95
+ - lib/ec2/amitools/manifestv3.rb
96
+ - lib/ec2/amitools/mapids.rb
97
+ - lib/ec2/amitools/migratebundle.rb
98
+ - lib/ec2/amitools/migratebundleparameters.rb
99
+ - lib/ec2/amitools/migratemanifest.rb
100
+ - lib/ec2/amitools/migratemanifestparameters.rb
101
+ - lib/ec2/amitools/minimalec2.rb
102
+ - lib/ec2/amitools/parameter_exceptions.rb
103
+ - lib/ec2/amitools/parameters_base.rb
104
+ - lib/ec2/amitools/region.rb
105
+ - lib/ec2/amitools/s3toolparameters.rb
106
+ - lib/ec2/amitools/showversion.rb
107
+ - lib/ec2/amitools/syschecks.rb
108
+ - lib/ec2/amitools/tool_base.rb
109
+ - lib/ec2/amitools/unbundle.rb
110
+ - lib/ec2/amitools/unbundleparameters.rb
111
+ - lib/ec2/amitools/uploadbundle.rb
112
+ - lib/ec2/amitools/uploadbundleparameters.rb
113
+ - lib/ec2/amitools/util.rb
114
+ - lib/ec2/amitools/version.rb
115
+ - lib/ec2/amitools/xmlbuilder.rb
116
+ - lib/ec2/amitools/xmlutil.rb
117
+ - lib/ec2/common/constants.rb
118
+ - lib/ec2/common/curl.rb
119
+ - lib/ec2/common/headers.rb
120
+ - lib/ec2/common/headersv4.rb
121
+ - lib/ec2/common/http.rb
122
+ - lib/ec2/common/s3support.rb
123
+ - lib/ec2/common/signature.rb
124
+ - lib/ec2/oem/LICENSE.txt
125
+ - lib/ec2/oem/open4.rb
126
+ - lib/ec2/platform.rb
127
+ - lib/ec2/platform/base.rb
128
+ - lib/ec2/platform/base/architecture.rb
129
+ - lib/ec2/platform/base/constants.rb
130
+ - lib/ec2/platform/base/pipeline.rb
131
+ - lib/ec2/platform/current.rb
132
+ - lib/ec2/platform/linux.rb
133
+ - lib/ec2/platform/linux/architecture.rb
134
+ - lib/ec2/platform/linux/constants.rb
135
+ - lib/ec2/platform/linux/fstab.rb
136
+ - lib/ec2/platform/linux/identity.rb
137
+ - lib/ec2/platform/linux/image.rb
138
+ - lib/ec2/platform/linux/mtab.rb
139
+ - lib/ec2/platform/linux/pipeline.rb
140
+ - lib/ec2/platform/linux/rsync.rb
141
+ - lib/ec2/platform/linux/tar.rb
142
+ - lib/ec2/platform/linux/uname.rb
143
+ - lib/ec2/platform/solaris.rb
144
+ - lib/ec2/platform/solaris/architecture.rb
145
+ - lib/ec2/platform/solaris/constants.rb
146
+ - lib/ec2/platform/solaris/fstab.rb
147
+ - lib/ec2/platform/solaris/identity.rb
148
+ - lib/ec2/platform/solaris/image.rb
149
+ - lib/ec2/platform/solaris/mtab.rb
150
+ - lib/ec2/platform/solaris/pipeline.rb
151
+ - lib/ec2/platform/solaris/rsync.rb
152
+ - lib/ec2/platform/solaris/tar.rb
153
+ - lib/ec2/platform/solaris/uname.rb
154
+ - lib/ec2/version.rb
155
+ - lib/ec2_amitools
156
+ - lib/ec2_amitools.rb
157
+ homepage: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/set-up-ami-tools.html
158
+ licenses:
159
+ - Amazon Software License
160
+ metadata:
161
+ homepage_uri: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/set-up-ami-tools.html
162
+ source_code_uri: http://github.com/sfate/ec2_amitools
163
+ post_install_message:
164
+ rdoc_options: []
165
+ require_paths:
166
+ - lib
167
+ - etc
168
+ required_ruby_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: 2.0.0
173
+ required_rubygems_version: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ version: 2.1.11
178
+ requirements: []
179
+ rubyforge_project:
180
+ rubygems_version: 2.5.2
181
+ signing_key:
182
+ specification_version: 4
183
+ summary: 'AWS: EC2 AMI Tools'
184
+ test_files: []