diff --git a/CHANGELOG.md b/CHANGELOG.md index 911590ae..17340d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -174,3 +174,7 @@ ## v1.3.9 - Fix quote removal/type finagling YAML sadness (thanks @arledesma) + +## v1.3.10 + +- Fix other modes / types ノ( ゜-゜ノ) diff --git a/tasks/install.yml b/tasks/install.yml index efa2ebea..23fd7e8e 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -49,7 +49,7 @@ url: "{{ vault_zip_url }}" dest: "{{ role_path }}/files/{{ vault_pkg }}" checksum: "sha256:{{ vault_sha256.stdout.split(' ')|first }}" - timeout: 42 + timeout: "42" run_once: true tags: installation when: vault_package.stat.exists == False @@ -70,7 +70,7 @@ dest: "{{ vault_bin_path }}" owner: "{{ vault_user }}" group: "{{ vault_group }}" - mode: 0755 + mode: "0755" tags: installation - name: Cleanup diff --git a/tasks/main.yml b/tasks/main.yml index da2dfb88..5715dd8d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -67,7 +67,7 @@ dest: "{{ vault_main_config }}" owner: "{{ vault_user }}" group: "{{ vault_group }}" - mode: 0400 + mode: "0400" - name: SYSV init script template: @@ -75,7 +75,7 @@ dest: /etc/init.d/vault owner: root group: root - mode: 0755 + mode: "0755" when: not ansible_distribution == "Debian" - name: Debian init script @@ -84,7 +84,7 @@ dest: /etc/init.d/vault owner: root group: root - mode: 0755 + mode: "0755" when: ansible_distribution == "Debian" and ansible_distribution_major_version|int <= 7 - name: systemd unit @@ -93,7 +93,7 @@ dest: /lib/systemd/system/vault.service owner: root group: root - mode: 0644 + mode: "0644" when: ansible_distribution_major_version|int >= 7 - name: Start Vault @@ -106,4 +106,4 @@ wait_for: host: "{{ vault_address}}" port: "{{ vault_port }}" - delay: 10 + delay: "10" diff --git a/version.txt b/version.txt index 10f3488d..fb3afc8e 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v1.3.9 +v1.3.10