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 +4 -4
- data/CHANGELOG.md +7 -1
- data/ansible/roles/common/tasks/main.yml +2 -2
- data/lib/subspace/version.rb +1 -1
- data/template/provision/playbook.yml.erb +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffa8bc859573f1bd22a6223e3063e63146ff7f3e30f390f0673ae81e47b6f299
|
|
4
|
+
data.tar.gz: 792ed07fbfd88ce81d0915e7cdff6b6fb03815d210778959e21d5e29ca93574c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/subspace/version.rb
CHANGED
|
@@ -12,9 +12,8 @@
|
|
|
12
12
|
- ruby-common
|
|
13
13
|
- rails
|
|
14
14
|
- puma
|
|
15
|
-
- nginx
|
|
16
15
|
- letsencrypt
|
|
17
|
-
- nginx
|
|
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
|
+
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-
|
|
11
|
+
date: 2021-05-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|