syncwrap 2.6.1 → 2.6.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.
- checksums.yaml +4 -4
- data/History.rdoc +9 -3
- data/lib/syncwrap/base.rb +1 -1
- data/lib/syncwrap/components/amazon_linux.rb +9 -2
- data/test/test_components.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e77f5ce5aa53289eeb185d2eae6cc57f1409c80b
|
|
4
|
+
data.tar.gz: 1b4f72235707a1e8c57cacf696c50011f2482b2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97bde28072609b93f183ea46f154fc92e8a0affa9ba9c373acd341eb48e70d02d11f3c288105c6efd9034708f0388053c22918c10b3a1f8f57d55ea91fd6c40e
|
|
7
|
+
data.tar.gz: 490597d2d2564ed30fb028d67e39650d7d13cc6d6f325443ddf8143a8ec08b998af2d446b205c6e4534a700f61fb2fde6873a986f898fa1ca015fe436c58948c
|
data/History.rdoc
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
|
+
=== 2.6.2 (2015-12-3)
|
|
2
|
+
* By way of comparability to RHEL 7, SyncWrap::AmazonLinux with a
|
|
3
|
+
specified amazon_version property >= '2014.03' would incorrectly
|
|
4
|
+
return true for systemd?. As Amazon Linux has yet (2015.09) to
|
|
5
|
+
migrate to systemd, override this to return false.
|
|
6
|
+
|
|
1
7
|
=== 2.6.1 (2015-12-2)
|
|
2
8
|
* Default SyncWrap::PostgreSQL to version 9.4 on Debian 8+.
|
|
3
9
|
* Use PATH to find `systemctl`, like other system tools. Debian 8 still
|
|
4
10
|
doesn't have merged /usr/bin.
|
|
5
11
|
* Add -a/--add-role flag to CLI to add role(s) with create or image
|
|
6
12
|
beyond what is specified by the profile.
|
|
7
|
-
* Add curl to existing build deps of CRubyVM and
|
|
8
|
-
resolves the simplest cases where a minimal
|
|
9
|
-
not-including curl
|
|
13
|
+
* Add curl to existing build deps of SyncWrap::CRubyVM and
|
|
14
|
+
SyncWrap::Hashdot. This resolves the simplest cases where a minimal
|
|
15
|
+
base image not-including curl would have failed. Other cases will
|
|
10
16
|
be addressed in subsequent releases.
|
|
11
17
|
|
|
12
18
|
=== 2.6.0 (2015-11-13)
|
data/lib/syncwrap/base.rb
CHANGED
|
@@ -26,8 +26,8 @@ module SyncWrap
|
|
|
26
26
|
|
|
27
27
|
alias :distro_version :amazon_version
|
|
28
28
|
|
|
29
|
-
# Return RHEL#rhel_version if specified, or
|
|
30
|
-
#
|
|
29
|
+
# Return RHEL#rhel_version if specified, or a comparable
|
|
30
|
+
# RHEL version if #amazon_version if specified.
|
|
31
31
|
#
|
|
32
32
|
# History of Amazon Linux releases:
|
|
33
33
|
#
|
|
@@ -45,6 +45,13 @@ module SyncWrap
|
|
|
45
45
|
'5' ) )
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
# Despite later versions being comparable to #rhel_version '7',
|
|
49
|
+
# Amazon Linux has yet (2015.09) to migrate to systemd. Return
|
|
50
|
+
# false.
|
|
51
|
+
def systemd?
|
|
52
|
+
false
|
|
53
|
+
end
|
|
54
|
+
|
|
48
55
|
end
|
|
49
56
|
|
|
50
57
|
end
|
data/test/test_components.rb
CHANGED
|
@@ -55,7 +55,7 @@ module SyncWrap
|
|
|
55
55
|
puma_version: '2.9.0', rack_path: File.expand_path( '../../lib', __FILE__ ) ],
|
|
56
56
|
[ RHEL, RunUser, JRubyVM, BundlerGem,
|
|
57
57
|
SourceTree, { source_dir: 'lib', require_clean: false },
|
|
58
|
-
Bundle, Puma ],
|
|
58
|
+
Bundle, Puma, systemd_unit: 'puma.service' ],
|
|
59
59
|
[ Debian, OpenJDK, JRubyVM, Hashdot ],
|
|
60
60
|
[ RHEL, JRubyVM, RunUser, Iyyov ],
|
|
61
61
|
[ Ubuntu, JRubyVM, RunUser, Iyyov, IyyovDaemon, name: 'test', version: '0' ],
|
|
@@ -72,6 +72,7 @@ module SyncWrap
|
|
|
72
72
|
[ RHEL, { rhel_version: '7' }, Network ],
|
|
73
73
|
[ AmazonLinux, Network ],
|
|
74
74
|
[ Debian, OpenJDK ],
|
|
75
|
+
[ AmazonLinux, PostgreSQL ],
|
|
75
76
|
[ Debian, PostgreSQL ],
|
|
76
77
|
[ Ubuntu, PostgreSQL ],
|
|
77
78
|
[ CentOS, PostgreSQL ],
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: syncwrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Kellum
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: term-ansicolor
|