syncwrap 2.10.0 → 2.10.1

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 (71) hide show
  1. checksums.yaml +4 -4
  2. data/History.rdoc +13 -1
  3. data/README.rdoc +16 -28
  4. data/bin/syncwrap +1 -1
  5. data/lib/syncwrap.rb +1 -1
  6. data/lib/syncwrap/amazon_ec2.rb +1 -1
  7. data/lib/syncwrap/amazon_ws.rb +1 -1
  8. data/lib/syncwrap/base.rb +2 -2
  9. data/lib/syncwrap/change_key_listener.rb +1 -1
  10. data/lib/syncwrap/cli.rb +1 -1
  11. data/lib/syncwrap/component.rb +1 -1
  12. data/lib/syncwrap/components/amazon_linux.rb +14 -12
  13. data/lib/syncwrap/components/arch.rb +1 -1
  14. data/lib/syncwrap/components/bundle.rb +1 -1
  15. data/lib/syncwrap/components/bundled_iyyov_daemon.rb +1 -1
  16. data/lib/syncwrap/components/bundler_gem.rb +1 -1
  17. data/lib/syncwrap/components/centos.rb +1 -1
  18. data/lib/syncwrap/components/change_guard.rb +1 -1
  19. data/lib/syncwrap/components/commercial_jdk.rb +1 -1
  20. data/lib/syncwrap/components/cruby_vm.rb +30 -26
  21. data/lib/syncwrap/components/debian.rb +1 -1
  22. data/lib/syncwrap/components/etc_hosts.rb +1 -1
  23. data/lib/syncwrap/components/geminabox.rb +1 -1
  24. data/lib/syncwrap/components/hashdot.rb +1 -1
  25. data/lib/syncwrap/components/iyyov.rb +1 -1
  26. data/lib/syncwrap/components/iyyov_daemon.rb +1 -1
  27. data/lib/syncwrap/components/jruby_vm.rb +15 -14
  28. data/lib/syncwrap/components/lvm_cache.rb +1 -1
  29. data/lib/syncwrap/components/mdraid.rb +1 -1
  30. data/lib/syncwrap/components/network.rb +1 -1
  31. data/lib/syncwrap/components/open_jdk.rb +1 -1
  32. data/lib/syncwrap/components/postgresql.rb +39 -17
  33. data/lib/syncwrap/components/puma.rb +1 -1
  34. data/lib/syncwrap/components/qpid.rb +1 -1
  35. data/lib/syncwrap/components/rake_gem.rb +1 -1
  36. data/lib/syncwrap/components/rhel.rb +1 -1
  37. data/lib/syncwrap/components/run_user.rb +1 -1
  38. data/lib/syncwrap/components/source_tree.rb +1 -1
  39. data/lib/syncwrap/components/tarpit_gem.rb +1 -1
  40. data/lib/syncwrap/components/time_checker.rb +1 -1
  41. data/lib/syncwrap/components/ubuntu.rb +2 -1
  42. data/lib/syncwrap/components/users.rb +1 -1
  43. data/lib/syncwrap/context.rb +1 -1
  44. data/lib/syncwrap/distro.rb +1 -1
  45. data/lib/syncwrap/formatter.rb +1 -1
  46. data/lib/syncwrap/git_help.rb +1 -1
  47. data/lib/syncwrap/hash_support.rb +1 -1
  48. data/lib/syncwrap/host.rb +1 -1
  49. data/lib/syncwrap/main.rb +1 -1
  50. data/lib/syncwrap/path_util.rb +1 -1
  51. data/lib/syncwrap/rsync.rb +1 -1
  52. data/lib/syncwrap/ruby_support.rb +1 -1
  53. data/lib/syncwrap/shell.rb +1 -1
  54. data/lib/syncwrap/sudoers.rb +1 -1
  55. data/lib/syncwrap/systemd.rb +1 -1
  56. data/lib/syncwrap/systemd_service.rb +1 -1
  57. data/lib/syncwrap/user_data.rb +1 -1
  58. data/lib/syncwrap/version_support.rb +1 -1
  59. data/lib/syncwrap/zone_balancer.rb +1 -1
  60. data/sync/postgresql/postgresql.conf.erb +52 -37
  61. data/test/setup.rb +1 -1
  62. data/test/test_components.rb +4 -2
  63. data/test/test_context.rb +1 -1
  64. data/test/test_context_rput.rb +1 -1
  65. data/test/test_rsync.rb +1 -1
  66. data/test/test_shell.rb +1 -1
  67. data/test/test_space.rb +1 -1
  68. data/test/test_space_main.rb +1 -1
  69. data/test/test_version_support.rb +1 -1
  70. data/test/test_zone_balancer.rb +1 -1
  71. metadata +3 -3
data/test/setup.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2017 David Kellum
2
+ # Copyright (c) 2011-2018 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
@@ -45,6 +45,8 @@ module SyncWrap
45
45
  [ Arch, CRubyVM ],
46
46
  [ EtcHosts ],
47
47
  [ AmazonLinux, JRubyVM, RunUser, Iyyov, Geminabox ],
48
+ [ AmazonLinux, { amazon_version: '2017.12' },
49
+ JRubyVM, RunUser, Iyyov, Geminabox ],
48
50
  [ RHEL, JRubyVM, BundlerGem ],
49
51
  [ RHEL, CRubyVM, BundlerGem ],
50
52
  [ CentOS, JRubyVM, RakeGem ],
@@ -97,7 +99,7 @@ module SyncWrap
97
99
  [ Debian, PostgreSQL ],
98
100
  [ Ubuntu, PostgreSQL ],
99
101
  [ CentOS, PostgreSQL ],
100
- [ CentOS, PostgreSQL, pg_version: '9.5' ],
102
+ [ CentOS, PostgreSQL, pg_version: '10' ],
101
103
  [ RHEL, Qpid ],
102
104
  [ CentOS, QpidRepo, qpid_prebuild_repo: 'http://localhost' ],
103
105
  [ RHEL ],
data/test/test_context.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
data/test/test_rsync.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
data/test/test_shell.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
data/test/test_space.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2017 David Kellum
5
+ # Copyright (c) 2011-2018 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
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.10.0
4
+ version: 2.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Kellum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-26 00:00:00.000000000 Z
11
+ date: 2018-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: term-ansicolor
@@ -298,7 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
298
298
  version: '0'
299
299
  requirements: []
300
300
  rubyforge_project:
301
- rubygems_version: 2.5.2.1
301
+ rubygems_version: 2.5.2.3
302
302
  signing_key:
303
303
  specification_version: 4
304
304
  summary: A rather direct provisioning and deployment system in ruby, bash over ssh,