Forked from patrickmslatteryvt/gist:d531c5ae4598fd4c9d508833bde6c7c0
Created
November 16, 2021 16:36
-
-
Save DanielKotik/4080b96bda8b1fdbb0c038f4efff4fb1 to your computer and use it in GitHub Desktop.
Install/update SOPS to latest on Fedora
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
# Install/update SOPS to latest on Fedora - https://github.com/mozilla/sops | |
echo "[+] Install/upgrade SOPS" | |
SOPS_VERSION=$(curl -s https://api.github.com/repos/mozilla/sops/releases/latest | jq .tag_name | tr -d '"') | |
dnf install -y https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}-1.x86_64.rpm | |
sops --version | |
# sops 3.2.0 (latest) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment