subspace 2.5.8 β†’ 2.5.10

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
  SHA256:
3
- metadata.gz: 82942611925eb85847f321e3fc375f02fcd3c49fdde254012aa276792c309437
4
- data.tar.gz: 58a200b894ab4a697c57a8db271ad36db1ba3cf304ee9045f903e872ec52cb14
3
+ metadata.gz: 19de34c265cd2948a3dc40c63d8974f76e5a4ce63a014eb2fe19db81181cf2ea
4
+ data.tar.gz: efeab17b834a3e09270c9ae2a94976f635e92eb890ae218324029d11dc139a92
5
5
  SHA512:
6
- metadata.gz: 4c8e6dc1a37b42a77c44bcb3ce8a9a794b662505a06aa838af810151e25e283d673358e8062fbc6da2e342aa5d00de336d8d38633e4a2e4027f0a81800ccc35e
7
- data.tar.gz: 24a4eccfcb22e0e9a70b3fe9030ec3303add72ef1a97a4bec9d3c2ce0e30c881f37bee9c80f0b3d691be8649574c445035fdc5666ea6686eab345b8b22b93885
6
+ metadata.gz: b1137de151178b6960cf83438b05b0ba674b7918b56387fd1dfc2932647231d2fdb5225dddbdbef47849c84aca0dd6b340124c917396cce4a4022fea31bf0417
7
+ data.tar.gz: a9a78b1cae0a192319455041009f0bbe0ba1f928262b96c8fe357dd21dc6b4d5557ce375988ce44735cdefedae7d5f83a98573e7d87394b27a1918976786a1fb
data/CHANGELOG.md CHANGED
@@ -11,6 +11,11 @@ This project attempts to follow [semantic versioning](https://semver.org/).
11
11
  * Stops showing color if you `sudo su`
12
12
 
13
13
  ## Unreleased
14
+ ## 2.5.10
15
+ * Backport the fix for ansible's change of get_url checksum arguments
16
+
17
+ ## 2.5.9
18
+ * backport disabling mitogen
14
19
 
15
20
  ## 2.5.8
16
21
  * Add a new role for configuring a monit-based resque server
data/README.md CHANGED
@@ -386,7 +386,7 @@ Install monitoring and automatic startup for resque workers via monit. You MUST
386
386
  Installs ruby on the machine. YOu can set a version by picking off the download url and sha hash from ruby-lang.org
387
387
 
388
388
  ruby_version: ruby-2.4.1
389
- ruby_checksum: a330e10d5cb5e53b3a0078326c5731888bb55e32c4abfeb27d9e7f8e5d000250
389
+ ruby_checksum: sha256:a330e10d5cb5e53b3a0078326c5731888bb55e32c4abfeb27d9e7f8e5d000250
390
390
  ruby_download_location: 'https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.1.tar.gz'
391
391
  bundler_version: 2.0.1
392
392
 
@@ -425,7 +425,11 @@ In order to dramatically speed up ansible, you can install Mitogen: https://gith
425
425
 
426
426
  pip install -g mitogen
427
427
 
428
- Subspace will automatically detect this and update your ansible.cfg file so it is blazing fast.
428
+ Subspace will automatically detect this and update your ansible.cfg file so it is blazing fast. Sometimes this can cause issues with older servers that have weird pythons, so if you have mitogen installed locally but dont wan't to use it, you can set an environment variable:
429
+
430
+ DISABLE_MITOGEN=1 subspace provision staging
431
+
432
+
429
433
 
430
434
 
431
435
  ## Directory Structure
@@ -23,7 +23,7 @@ Role Variables
23
23
 
24
24
  > ruby_version: This variable controls the version of Ruby that will be compiled and installed. It should correspond with the tarball filename excluding the ".tar.gz" extension (e.g. "ruby-1.9.3-p484").
25
25
 
26
- > ruby_checksum: The SHA256 checksum of the gzipped tarball that will be downloaded and compiled.
26
+ > ruby_checksum: The checksum of the gzipped tarball that will be downloaded and compiled. (prefix with algorithm, e.g. sha256:abcdef01234567890)
27
27
 
28
28
  > ruby_download_location: The URL that the tarball should be retrieved from. Using the ruby_version variable within this variable is a good practice (e.g. "http://cache.ruby-lang.org/pub/ruby/1.9/{{ ruby_version }}.tar.gz").
29
29
 
@@ -40,7 +40,7 @@
40
40
  - name: Download the Ruby source code
41
41
  get_url: url={{ ruby_download_location }}
42
42
  dest=/usr/local/src/
43
- sha256sum={{ ruby_checksum }}
43
+ checksum={{ ruby_checksum }}
44
44
  become: true
45
45
 
46
46
  - name: Generate the Ruby installation script
@@ -13,7 +13,7 @@ module Subspace
13
13
  private
14
14
 
15
15
  def update_ansible_cfg
16
- if `pip show mitogen` =~ /^Location: (.*?)$/m
16
+ if !ENV["DISABLE_MITOGEN"] && `pip show mitogen 2>&1` =~ /^Location: (.*?)$/m
17
17
  @mitogen_path = $1
18
18
  puts "πŸŽπŸš€πŸš…Mitogen found at #{@mitogen_path}. WARP 9!....ENGAGE!πŸš€"
19
19
  else
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "2.5.8"
2
+ VERSION = "2.5.10"
3
3
  end
data/subspace.gemspec CHANGED
@@ -33,4 +33,5 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  spec.add_runtime_dependency "commander", "~>4.2"
35
35
  spec.add_runtime_dependency "figaro", "~>1.0"
36
+ spec.add_runtime_dependency "ed25519", "~>1.0"
36
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.8
4
+ version: 2.5.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-02-09 00:00:00.000000000 Z
11
+ date: 2023-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '1.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: ed25519
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.0'
83
97
  description: WIP -- don't use this :)
84
98
  email:
85
99
  - brian@tenforwardconsulting.com