capistrano-fiftyfive 0.17.1 → 0.17.2

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
  SHA1:
3
- metadata.gz: b0e57fbce1a3e7532bbbe60ce9cefb070f0754a4
4
- data.tar.gz: 316ec5cff46c900b135125d092f671068b516cbb
3
+ metadata.gz: 6bd7a614d1cce71475c2ad308b03b116b5cd2a9a
4
+ data.tar.gz: 424092e4974c0cfc779ee2ac471bcf1f40e47ab2
5
5
  SHA512:
6
- metadata.gz: 30aae37f217b63083a80089f19069198b5b128ce633fc6ae35cf914d4885865aeaf5860f283af9fd5326ddc97daceadd7e2d4342dce96788a95b2ffad2b03746
7
- data.tar.gz: fbb03c164ffe3c4218a5a2a5568aa8bf46cd0851c95e530d6c0df1cdf8cb287057067261095158887edaf26ff11c0ee61d51374c9958e63bab9f2d37d5bd2b14
6
+ metadata.gz: f416ef20815e2222e99733a8a24b68ff6f4c1729f05259939cd4cb530c1490b554c8ae5025c141a81890f2e0e6914ccc2de4e48639b4cf1e6a9ff8bd2d509adf
7
+ data.tar.gz: 0c0fd5d8fd66e29fa076961eb77c7776a1e1988fbca13fcd69e0b212a2638c33e73132b9b3fea21dcf57cb070b6bc62d9ef228c4e4f73ffb7508a27881b18de8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # capistrano-fiftyfive Changelog
2
2
 
3
+ ## `0.17.2`
4
+
5
+ * Default self-signed SSL certificate is now more generic (for real this time).
6
+
3
7
  ## `0.17.1`
4
8
 
5
9
  * Cosmetic changes to the gemspec.
@@ -19,9 +19,9 @@
19
19
  # [ req_distinguished_name ]
20
20
  # C="US"
21
21
  # ST="California"
22
- # L="Albany"
23
- # O="55 Minutes Inc."
24
- # CN="www.55minutes.com"
22
+ # L="San Francisco"
23
+ # O="Example Company"
24
+ # CN="www.example.com"
25
25
 
26
26
  if [[ $1 == --self ]]; then
27
27
  SELF_SIGN=1
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Fiftyfive
3
- VERSION = "0.17.1"
3
+ VERSION = "0.17.2"
4
4
  end
5
5
  end
@@ -73,11 +73,11 @@ namespace :load do
73
73
  set :fiftyfive_sidekiq_concurrency, 25
74
74
  set :fiftyfive_sidekiq_role, :sidekiq
75
75
 
76
- set :fiftyfive_ssl_csr_country, "US"
77
- set :fiftyfive_ssl_csr_state, "California"
78
- set :fiftyfive_ssl_csr_city, "San Francisco"
79
- set :fiftyfive_ssl_csr_org, "Example Company"
80
- set :fiftyfive_ssl_csr_name, "example.com"
76
+ ask :fiftyfive_ssl_csr_country, "US"
77
+ ask :fiftyfive_ssl_csr_state, "California"
78
+ ask :fiftyfive_ssl_csr_city, "San Francisco"
79
+ ask :fiftyfive_ssl_csr_org, "Example Company"
80
+ ask :fiftyfive_ssl_csr_name, "www.example.com"
81
81
 
82
82
  # WARNING: misconfiguring firewall rules could lock you out of the server!
83
83
  set :fiftyfive_ufw_rules,
@@ -25,12 +25,6 @@ namespace :fiftyfive do
25
25
  if files_exist
26
26
  info("Files exist; skipping SSL key generation.")
27
27
  else
28
- ask :fiftyfive_ssl_csr_country, "US"
29
- ask :fiftyfive_ssl_csr_state, "California"
30
- ask :fiftyfive_ssl_csr_city, "Albany"
31
- ask :fiftyfive_ssl_csr_org, "55 Minutes Inc."
32
- ask :fiftyfive_ssl_csr_name, "www.55minutes.com"
33
-
34
28
  config = "/tmp/csr_config"
35
29
  ssl_script = "/tmp/ssl_script"
36
30
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-fiftyfive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.1
4
+ version: 0.17.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-17 00:00:00.000000000 Z
11
+ date: 2015-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano