syncwrap 2.6.1 → 2.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9fa7854403d0e4cf2392a7e6d8ed77358d99a1b4
4
- data.tar.gz: f2f5dbdabe714b9d293259bfe3ec2963ca0b70be
3
+ metadata.gz: e77f5ce5aa53289eeb185d2eae6cc57f1409c80b
4
+ data.tar.gz: 1b4f72235707a1e8c57cacf696c50011f2482b2f
5
5
  SHA512:
6
- metadata.gz: 29741c45ef1bf11c0155be47e5c1972543e930f52b37e0610b741b9ab9404fadc712d41a2b96678fec05158d87e5eeadfdb5eff2fd7b9fe235c058a1fb585684
7
- data.tar.gz: 7a316ff8dfcbd34119cf37486c615d72d4b35407788ee762a5ca9094ce14cb69c25eae0d056415a80171d0c48ab5003c0ebc3d136611cf247e633dd3c21a9daa
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 Hashdot. This
8
- resolves the simplest cases where a minimal base image, in this case
9
- not-including curl, would have previously failed. Other cases will
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
@@ -15,7 +15,7 @@
15
15
  #++
16
16
 
17
17
  module SyncWrap
18
- VERSION='2.6.1'
18
+ VERSION='2.6.2'
19
19
 
20
20
  GEM_ROOT = File.dirname(File.dirname(File.dirname(__FILE__))) # :nodoc:
21
21
  end
@@ -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 provide comparable
30
- # default RHEL version if #amazon_vesion is specified.
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
@@ -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.1
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-02 00:00:00.000000000 Z
11
+ date: 2015-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: term-ansicolor