Skip to content

Commit

Permalink
fix var names
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Oct 22, 2016
1 parent 8f4e294 commit 6abadcd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@

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

# v1.0.7

- Fix var names
6 changes: 3 additions & 3 deletions tasks/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
- name: Download Vault
become: no
connection: local
get_url: "url={{ Vault_zip_url }} dest={{ role_path }}/files/{{ Vault_debian_pkg }} sha256sum={{ Vault_zip_sha256 }} timeout=74"
get_url: "url={{ vault_zip_url }} dest={{ role_path }}/files/{{ vault_debian_pkg }} sha256sum={{ vault_zip_sha256 }} timeout=74"
run_once: true
tags: installation

- 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
Expand Down
6 changes: 3 additions & 3 deletions tasks/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
- name: Download Vault
become: no
connection: local
get_url: "url={{ Vault_zip_url }} dest={{ role_path }}/files/{{ Vault_debian_pkg }} sha256sum={{ Vault_zip_sha256 }} timeout=74"
get_url: "url={{ vault_zip_url }} dest={{ role_path }}/files/{{ vault_debian_pkg }} sha256sum={{ vault_zip_sha256 }} timeout=74"
run_once: true
tags: installation

- 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
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.6
v1.0.7

0 comments on commit 6abadcd

Please sign in to comment.