diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ab3cbed..1814c65f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,3 +31,7 @@ - Add fail on old distro versions - Remove all distro specific includes + +# v1.0.7 + +- Fix var names diff --git a/tasks/Debian.yml b/tasks/Debian.yml index 80dfa42e..7bf1e484 100644 --- a/tasks/Debian.yml +++ b/tasks/Debian.yml @@ -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 diff --git a/tasks/Ubuntu.yml b/tasks/Ubuntu.yml index 9c2b9ed2..4735d942 100644 --- a/tasks/Ubuntu.yml +++ b/tasks/Ubuntu.yml @@ -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 diff --git a/version.txt b/version.txt index e8763988..cbe8779b 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v1.0.6 +v1.0.7