subspace 1.0.4 → 1.0.5

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
- SHA1:
3
- metadata.gz: d685d102ccd5aab546e77d660dfc7c8dcf25c2ee
4
- data.tar.gz: 7fd7f5d5cb9b04a97872ce5e8d5b3ccd90700acd
2
+ SHA256:
3
+ metadata.gz: 0d6866d58df90b9bf386b826fa919fd3b0c0e8f8216a9bc1e8b730e5ee7462a8
4
+ data.tar.gz: 8b96d217f05241ae7ccd6d0d0a9df6292f4867fd71391b96a99c5f1f43fa9fd3
5
5
  SHA512:
6
- metadata.gz: 44ac08b92ec270e6f838ea9f8e4b2cced96c99a0f0f088889282a4182268d6aeed714bf8758a63921d7a1724aca8cefa819a52a7f31078cb800e12551b81b20b
7
- data.tar.gz: ed6b80fa239c6e6ca40dd3115fb0ac515249f0bfe21f03018833365dd6394e6a3e5b268e429c3df7e6339904b066f63607f0b85fa283416e0e2eebb69787d09f
6
+ metadata.gz: fdcf3d76dc094d66d81a184031cf7508f2a8c08e7a3d8a1afa4c23143044a10a141b2e54bd9e2c9095775b36a0302653e4688939b275ea9b7ffca8c9db4a5e6c
7
+ data.tar.gz: 9044bdce9c3d334938bbab142ae44b7a6863769e623a46efb507d5891ebc4ba5b22d47b9508c2c1050c38b382b15b1553ac65db87afdcf4fe17f8a40addfbedc
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.2
1
+ 2.4.4
data/CHANGELOG.md CHANGED
@@ -8,9 +8,14 @@ This project attempts to follow [semantic versioning](https://semver.org/)
8
8
 
9
9
  * _nada_
10
10
 
11
+ ## 1.0.5 - 2018-10-16
12
+
13
+ * enhancements
14
+ * Unpin monit since they fixed it, and the version we have pinned isn't available in Ubuntu 18.04.
15
+
11
16
  ## 1.0.4 - 2018-10-18
12
17
 
13
- * enhancement
18
+ * enhancements
14
19
  * Add way to specify private key when running the bootstrap command.
15
20
  * Add way to specify only certain hosts to run the playbook on when running the
16
21
  provision command.
@@ -4,11 +4,10 @@ This server brought to you by:
4
4
  \___ \| | | | '_ \___ \| '_ \ / _` |/ __/ _ \
5
5
  ___) | |_| | |_) |__) | |_) | (_| | (_| __/
6
6
  |____/ \__,_|_.__/____/| .__/ \__,_|\___\___|
7
- |_| v1.0.4
7
+ |_| v1.0.5
8
8
  ~~~ https://github.com/tenforwardconsulting/subspace ~~~
9
9
 
10
10
  If you need to make configuration changes to the server, please modify the
11
11
  config/provision directory in the app or risk the changes dissapearing.
12
12
 
13
13
  Last subspace run: {{ansible_date_time.iso8601}}
14
-
@@ -1,18 +1,16 @@
1
1
  ---
2
- # https://bugs.launchpad.net/ubuntu/+source/monit/+bug/1786910
3
- - name: Downgrade monit
4
- apt:
5
- name: monit=1:5.16-2
6
- force: true
7
- state: present
2
+ - name: Configure monit to install instead of pin
3
+ dpkg_selections:
4
+ name: monit
5
+ selection: install
8
6
  become: true
9
7
  tags:
10
8
  - monit
11
9
 
12
- - name: Pin monit so it doesn't update again
13
- dpkg_selections:
10
+ - name: install monit
11
+ apt:
14
12
  name: monit
15
- selection: hold
13
+ state: present
16
14
  become: true
17
15
  tags:
18
16
  - monit
@@ -24,6 +24,7 @@
24
24
  path: /etc/ImageMagick-6/policy.xml
25
25
  regexp: '<policy domain="coder" rights="none" pattern="PDF" />'
26
26
  line: ' <policy domain="coder" rights="read" pattern="PDF" />'
27
+ backrefs: yes
27
28
  become: true
28
29
  tags:
29
30
  - imagemagick
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
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.4
4
+ version: 1.0.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: 2018-10-18 00:00:00.000000000 Z
11
+ date: 2018-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -297,7 +297,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
297
297
  version: '0'
298
298
  requirements: []
299
299
  rubyforge_project:
300
- rubygems_version: 2.6.13
300
+ rubygems_version: 2.7.7
301
301
  signing_key:
302
302
  specification_version: 4
303
303
  summary: Ansible-based server provisioning for rails projects