Skip to content

Commit

Permalink
Binary names
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Oct 22, 2016
1 parent fe90f12 commit 5203285
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 12 deletions.
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,38 @@
- Set correct RAM amount in Vagrantfile
- Rename Vagrant inventory back to cluster_nodes

# v1.0.3
## v1.0.3

- Move all vars to defaults
- Documentation updates

# v1.0.4
## v1.0.4

- Correct URL in docs
- Remove vars dir
- Enable download once / copy many install

# v1.0.5
## v1.0.5

- Remove unnecessary include

# v1.0.6
## v1.0.6

- Add fail on old distro versions
- Remove all distro specific includes

# v1.0.7
## v1.0.7

- Fix var names

# v1.0.8
## v1.0.8

- Add files dir

## v1.0.9

- Add files dir

## v1.0.10

- Fix binary name
6 changes: 3 additions & 3 deletions tasks/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
- name: Unarchive Vault
become: no
connection: local
unarchive: "src={{ role_path }}/files/{{ vault_debian_pkg }} dest={{ role_path }}/files/ creates={{ role_path }}/files/Vault"
unarchive: "src={{ role_path }}/files/{{ vault_debian_pkg }} dest={{ role_path }}/files/ creates={{ role_path }}/files/vault"
run_once: true
tags: installation

- name: Install Vault
copy: "src={{ role_path }}/files/Vault dest=/usr/local/bin/ owner={{ vault_user }} group={{ vault_group }} mode=0755"
copy: "src={{ role_path }}/files/vault dest=/usr/local/bin/ owner={{ vault_user }} group={{ vault_group }} mode=0755"
tags: installation

- name: Cleanup
become: no
connection: local
file: "dest={{ role_path }}/files/Vault* state=absent"
file: "dest={{ role_path }}/files/vault* state=absent"
run_once: true
tags: installation
6 changes: 3 additions & 3 deletions tasks/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
- name: Unarchive Vault
become: no
connection: local
unarchive: "src={{ role_path }}/files/{{ vault_debian_pkg }} dest={{ role_path }}/files/ creates={{ role_path }}/files/Vault"
unarchive: "src={{ role_path }}/files/{{ vault_debian_pkg }} dest={{ role_path }}/files/ creates={{ role_path }}/files/vault"
run_once: true
tags: installation

- name: Install Vault
copy: "src={{ role_path }}/files/Vault dest=/usr/local/bin/ owner={{ vault_user }} group={{ vault_group }} mode=0755"
copy: "src={{ role_path }}/files/vault dest=/usr/local/bin/ owner={{ vault_user }} group={{ vault_group }} mode=0755"
tags: installation

- name: Cleanup
become: no
connection: local
file: "dest={{ role_path }}/files/Vault* state=absent"
file: "dest={{ role_path }}/files/vault* state=absent"
run_once: true
tags: installation

0 comments on commit 5203285

Please sign in to comment.