subspace 1.0.1 → 1.0.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: 90fdfae878e177aa1a51a5bc81e1a71085f50ea9
4
- data.tar.gz: af8989cc9ea70276eb5faf0a5018b361a6127ebc
3
+ metadata.gz: 6dc96e5eff62531a3d278c3f1c23d51d4defafa1
4
+ data.tar.gz: 25d1fecfc3b5099feea39c349d72af226abce8ec
5
5
  SHA512:
6
- metadata.gz: 3cd61fcbc09f1ed46f6615e4c68e6ed4ba4e3adf2b00d00c7dea12e4eadb6bdfd466bf0822c145a9b4413c5d5f8f994bbd3b8603d862e0819c4ed0abc962e7e1
7
- data.tar.gz: 888c2c7f29e47a7633df767428b89bea36c739a24fbf93a7495ad3d046f0fa093c08b7fd7c436ac3c52d3ade2d80854d58360d6f7f31d37950faa969cce93d0d
6
+ metadata.gz: ff0dc141079bb7962ffb986a98f1ae23a83309be85e6b774bd67af911a2a7ff49eeae2e8c78e42a4ca013e8aa6627e552312ee20ac4298405de8f2b3b61f08cb
7
+ data.tar.gz: 49be218bce28c641f32aa6708cafffd8494c794e01d520645790ad4a65d0008e1f2677e65856151a1897e3ba32c6af87c4175a4bd47efc62f0b4ef0b3df18b4a
@@ -8,6 +8,12 @@ This project attempts to follow [semantic versioning](https://semver.org/)
8
8
 
9
9
  * _nada_
10
10
 
11
+ ## 1.0.2 - 2018-09-12
12
+
13
+ * bug fixes
14
+ * Pin monit to the version that isn't broken. Since it was a security update,
15
+ monit would re-update if not pinned.
16
+
11
17
  ## 1.0.1 - 2018-08-15
12
18
 
13
19
  * bug fixes
data/README.md CHANGED
@@ -108,6 +108,8 @@ Then,
108
108
 
109
109
  If you get an error saying you need a vault password file, you should be able to find it in 1Password. You might also need to update `ansible`.
110
110
 
111
+ You'll want to do this for each environment (ie: `subspace provision qa`, etc.). Best to start with dev and work your way up.
112
+
111
113
  # Host configuration
112
114
 
113
115
  We need to know some info about hosts, but not much. See the files for details, it's mostly the hostname and the user that can administer the system, eg `ubuntu` on AWS/ubuntu, `ec2-user`, or even `root` (not recommended)
@@ -4,7 +4,7 @@ This server brought to you by:
4
4
  \___ \| | | | '_ \___ \| '_ \ / _` |/ __/ _ \
5
5
  ___) | |_| | |_) |__) | |_) | (_| | (_| __/
6
6
  |____/ \__,_|_.__/____/| .__/ \__,_|\___\___|
7
- |_| v1.0.1
7
+ |_| v1.0.2
8
8
  ~~~ https://github.com/tenforwardconsulting/subspace ~~~
9
9
 
10
10
  If you need to make configuration changes to the server, please modify the
@@ -1,9 +1,18 @@
1
1
  ---
2
- - name: Install monit
2
+ # https://bugs.launchpad.net/ubuntu/+source/monit/+bug/1786910
3
+ - name: Downgrade monit
3
4
  apt:
4
5
  name: monit=1:5.16-2
5
- state: present
6
6
  force: true
7
+ state: present
8
+ become: true
9
+ tags:
10
+ - monit
11
+
12
+ - name: Pin monit so it doesn't update again
13
+ dpkg_selections:
14
+ name: monit
15
+ selection: hold
7
16
  become: true
8
17
  tags:
9
18
  - monit
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  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: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-08-15 00:00:00.000000000 Z
11
+ date: 2018-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler