subspace 2.5.4 → 2.5.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80d8c1f6e9cebb238b6afa922f2175d9d7c38e64ff64020b83b247b297d0a2bf
4
- data.tar.gz: '07843c2f8262ce9d067318aeb6c6505fc8c96aafe7cd592b61ff2b381ca15c2e'
3
+ metadata.gz: ffa8bc859573f1bd22a6223e3063e63146ff7f3e30f390f0673ae81e47b6f299
4
+ data.tar.gz: 792ed07fbfd88ce81d0915e7cdff6b6fb03815d210778959e21d5e29ca93574c
5
5
  SHA512:
6
- metadata.gz: '079d75a0072666cd49beb2ca889aedc1b7f8d54d41d29eac51685e7e95abf76af45c249f8ac474367e898aa528c4ab215de46ca95a91ce178dd5c9fa6a42c23d'
7
- data.tar.gz: 9883316a47394683e198015ed045929b1528e2d9c262ae30ef27e34c625dc8e006b089b7e88f7bd7c6ba68405d681b38aeda55b99db9a278982680b8f2604a35
6
+ metadata.gz: 44103861cd1471f3cff70769d55525d0363af40727208462ddd98d531120e9eb53504d0e52ed82b0ae26fcad391237e5e6a506db1442cccbf76607d88d4edc75
7
+ data.tar.gz: 474014c40915e493b5111a548c28f7cb5a0a3e482a5ace75e512f5cfc83e2f469228374419df2e479beef8e223005de73db14b3d3e6905dc73d850e01825a53c
data/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  This is a [changelog](https://keepachangelog.com/en/0.3.0/).
4
4
 
5
- This project attempts to follow [semantic versioning](https://semver.org/)
5
+ This project attempts to follow [semantic versioning](https://semver.org/).
6
6
 
7
7
  ## Known Bugs
8
8
 
@@ -10,6 +10,12 @@ This project attempts to follow [semantic versioning](https://semver.org/)
10
10
  * Not working on OSX - macs don't read from /etc/profile.d/
11
11
  * Stops showing color if you `sudo su`
12
12
 
13
+ ## Unreleased
14
+
15
+ ## 2.5.5
16
+ * Remove duplicate nginx role from playbook templates
17
+ * Don't send stats if there have been no upgrades
18
+
13
19
  ## 2.5.4
14
20
  * certbox => certbot
15
21
 
@@ -153,7 +153,7 @@
153
153
  key: os_upgrades
154
154
  value: "{{stats_os_upgrades.stdout}}"
155
155
  hostname: "{{hostname}}"
156
- when: send_stats == true and stats_url is defined and stats_api_key is defined
156
+ when: (send_stats == true) and (stats_url is defined) and (stats_api_key is defined) and (stats_os_upgrades.stdout | length > 0)
157
157
  tags:
158
158
  - maintenance
159
159
  - stats
@@ -222,7 +222,7 @@
222
222
  key: os_security_upgrades
223
223
  value: "{{stats_os_security_upgrades.stdout}}"
224
224
  hostname: "{{hostname}}"
225
- when: send_stats == true and stats_url is defined and stats_api_key is defined
225
+ when: (send_stats == true) and (stats_url is defined) and (stats_api_key is defined) and (stats_os_security_upgrades.stdout | length > 0)
226
226
  tags:
227
227
  - maintenance
228
228
  - stats
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "2.5.4"
2
+ VERSION = "2.5.5"
3
3
  end
@@ -12,9 +12,8 @@
12
12
  - ruby-common
13
13
  - rails
14
14
  - puma
15
- - nginx
16
15
  - letsencrypt
17
- - nginx # This is included twice intentionally. I think there is a bug that is fixed by running it both before and after the letsencrypt role.
16
+ - nginx
18
17
  - postgresql
19
18
  - monit
20
19
  - logrotate
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.4
4
+ version: 2.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-02 00:00:00.000000000 Z
11
+ date: 2021-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler