-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplify shasums signature verification; move setcap to server state
- Loading branch information
Showing
7 changed files
with
80 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,60 @@ | ||
{% from "vault/map.jinja" import vault with context %} | ||
# using archive.extracted causes: 'Comment: Failed to cache https://releases.hashicorp.com/vault/0.7.0/vault_0.7.0_linux_amd64.zip: [Errno 1] _ssl.c:493: error:1409442E:SSL routines:SSL3_READ_BYTES:tlsv1 alert protocol version' | ||
#vault packages: | ||
# pkg.installed: | ||
# - names: | ||
# - unzip | ||
# - curl | ||
# {% if vault.secure_download %} | ||
# {% if grains['os'] == 'CentOS' or grains['os'] == 'Amazon' %} | ||
# - gnupg2 | ||
# - perl-Digest-SHA | ||
# {% elif grains['os'] == 'Ubuntu' %} | ||
# - gnupg | ||
# - libdigest-sha-perl | ||
# {% endif %} | ||
# {% endif %} | ||
/opt/vault/{{ vault.version }}/bin: | ||
{% set version = vault.version %} | ||
/opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS: | ||
file.managed: | ||
- source: https://releases.hashicorp.com/vault/{{ version }}/vault_{{ version }}_SHA256SUMS | ||
- makedirs: true | ||
- skip_verify: true | ||
/opt/vault/{{ version }}/bin: | ||
archive.extracted: | ||
- source: https://releases.hashicorp.com/vault/{{ vault.version }}/vault_{{ vault.version }}_linux_amd64.zip | ||
- source_hash: https://releases.hashicorp.com/vault/{{ vault.version }}/vault_{{ vault.version }}_SHA256SUMS | ||
- source: https://releases.hashicorp.com/vault/{{ version }}/vault_{{ version }}_linux_amd64.zip | ||
- source_hash: /opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS | ||
- enforce_toplevel: false | ||
- require: | ||
- /opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS | ||
/usr/local/bin/vault: | ||
file.symlink: | ||
- target: /opt/vault/{{ vault.version }}/bin/vault | ||
- target: /opt/vault/{{ version }}/bin/vault | ||
- force: true | ||
- require: | ||
- /opt/vault/{{ vault.version }}/bin | ||
- /opt/vault/{{ version }}/bin | ||
{% if vault.secure_download -%} | ||
/opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS.sig: | ||
file.managed: | ||
- source: https://releases.hashicorp.com/vault/{{ version }}/vault_{{ version }}_SHA256SUMS.sig | ||
- skip_verify: true | ||
- require: | ||
- /opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS | ||
#{% if vault.secure_download %} | ||
#download shasums: | ||
# cmd.run: | ||
# - name: curl --silent -L https://releases.hashicorp.com/vault/{{ vault.version }}/vault_{{ vault.version }}_SHA256SUMS -o /tmp/vault_{{ vault.version }}_SHA256SUMS | ||
# - creates: /tmp/vault_{{ vault.version }}_SHA256SUMS | ||
# | ||
#download shasums sig: | ||
# cmd.run: | ||
# - name: curl --silent -L https://releases.hashicorp.com/vault/{{ vault.version }}/vault_{{ vault.version }}_SHA256SUMS.sig -o /tmp/vault_{{ vault.version }}_SHA256SUMS.sig | ||
# - creates: /tmp/vault_{{ vault.version }}_SHA256SUMS.sig | ||
# | ||
#/tmp/hashicorp.asc: | ||
# file.managed: | ||
# - source: salt://vault/files/hashicorp.asc.jinja | ||
# - template: jinja | ||
# | ||
#import key: | ||
# cmd.run: | ||
# - name: gpg --import /tmp/hashicorp.asc | ||
# - unless: gpg --list-keys {{ vault.hashicorp_key_id }} | ||
# - requires: | ||
# - file: /tmp/hashicorp.asc | ||
# - cmd: vault packages | ||
# | ||
#verify shasums sig: | ||
# cmd.run: | ||
# - name: gpg --verify /tmp/vault_{{ vault.version }}_SHA256SUMS.sig /tmp/vault_{{ vault.version }}_SHA256SUMS | ||
# - require: | ||
# - cmd: download shasums | ||
# - cmd: import key | ||
# | ||
#verify vault: | ||
# cmd.run: | ||
# - name: "shasum -a 256 -c vault_{{ vault.version }}_SHA256SUMS 2>&1 | grep -q \"vault_{{ vault.version }}_linux_amd64.zip: OK\"" | ||
# - cwd: /tmp | ||
# - require: | ||
# - cmd: download vault | ||
# - cmd: verify shasums sig | ||
#{% endif %} | ||
# | ||
#install vault: | ||
# cmd.run: | ||
# - name: unzip /tmp/vault_{{ vault.version }}_linux_amd64.zip -d /usr/local/bin && chmod 0755 /usr/local/bin/vault && chown root:root /usr/local/bin/vault | ||
# - require: | ||
# - cmd: download vault | ||
# - pkg: unzip | ||
# {% if vault.secure_download %} | ||
# - cmd: verify vault | ||
# {% endif %} | ||
# - creates: /usr/local/bin/vault | ||
# | ||
#vault set cap mlock: | ||
# cmd.run: | ||
# - name: "setcap cap_ipc_lock=+ep /usr/local/bin/vault" | ||
# - onchanges: | ||
# - cmd: install vault | ||
/tmp/hashicorp.asc: | ||
file.managed: | ||
- source: salt://vault/files/hashicorp.asc.jinja | ||
- template: jinja | ||
vault_gpg_pkg: | ||
pkg.installed: | ||
- name: {{ vault.gpg_pkg }} | ||
import key: | ||
cmd.run: | ||
- name: gpg --import /tmp/hashicorp.asc | ||
- unless: gpg --list-keys {{ vault.hashicorp_key_id }} | ||
- require: | ||
- /tmp/hashicorp.asc | ||
- vault_gpg_pkg | ||
verify shasums sig: | ||
cmd.run: | ||
- name: gpg --verify /opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS.sig /opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS | ||
- require: | ||
- /opt/vault/{{ version }}/vault_{{ version }}_SHA256SUMS.sig | ||
- import key | ||
- prereq: | ||
- /usr/local/bin/vault | ||
{%- endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
{% import_yaml "vault/defaults.yaml" as defaults %} | ||
{% set vault = salt['pillar.get']('vault', default=defaults['vault'], merge=True) %} | ||
{% import_yaml "vault/osfamilymap.yaml" as osfamilymap %} | ||
|
||
{% set vault = salt['grains.filter_by']( | ||
defaults, | ||
merge=salt['grains.filter_by']( | ||
osfamilymap, | ||
merge=salt['pillar.get']('vault', {}), | ||
), | ||
base='vault') | ||
%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
RedHat: | ||
gpg_pkg: gnupg2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters