taperole 1.5.0 → 1.5.1
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/roles/deployer_user/tasks/keys.yml +9 -2
- data/taperole.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 56786611ba0aec628e29a941d3bbef08e068a67c
|
|
4
|
+
data.tar.gz: ca2a73598e61d109b4b52c01b94d7708727bdca7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f80e07973ce732adaa9077a870cd77e267ef3b6a7aa1e0fbf1e1b1ae6b510b8907768e213bf2b34dc0744d164fbe2461f0132597eaa0b63d9fb115033da2c75a
|
|
7
|
+
data.tar.gz: 076a1801c5f5811de0950fd2a80ff94807e6e5dcc0fda74e720e6f6739c287f9f7dfe4c12c8bf17cbd8d93b6e754df9714aa271626093c8e0053d55ac8396006
|
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
- name: Create deployer user ssh dir
|
|
2
|
-
file: path
|
|
2
|
+
file: path=/home/{{ deployer_user.name }}/.ssh
|
|
3
3
|
state=directory
|
|
4
|
-
owner=
|
|
4
|
+
owner={{ deployer_user.name }}
|
|
5
5
|
mode=744
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
- name: Copy of root ssh keys
|
|
9
9
|
command: "cp /root/.ssh/authorized_keys /home/{{ deployer_user.name }}/.ssh/authorized_keys"
|
|
10
10
|
|
|
11
|
+
- name: Ensure deployer owns the authorized keys file
|
|
12
|
+
file: path="/home/{{ deployer_user.name }}/.ssh/authorized_keys"
|
|
13
|
+
state=file
|
|
14
|
+
owner={{ deployer_user.name }}
|
|
15
|
+
mode=600
|
|
16
|
+
|
|
17
|
+
|
|
11
18
|
- name: Ensure devs keys are present
|
|
12
19
|
authorized_key: key={{ lookup('file', item) }}
|
|
13
20
|
manage_dir=yes
|
data/taperole.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "taperole"
|
|
3
|
-
spec.version = '1.5.
|
|
3
|
+
spec.version = '1.5.1'
|
|
4
4
|
spec.authors = ['Jack Forrest', 'Smashing Boxes', 'Brandon Mathis']
|
|
5
5
|
spec.description = "General purpose server provisioning and application deployment toolkit"
|
|
6
6
|
spec.email = ['jack@smashingboxes.com', 'brandon@sbox.es']
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: taperole
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jack Forrest
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2016-03-
|
|
13
|
+
date: 2016-03-15 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: slack-notifier
|