Created
December 29, 2025 00:48
-
-
Save orgcontrib/1e05c8d12bdb4b5e31299338833eb13a to your computer and use it in GitHub Desktop.
DNF install SOPS latest on Fedora
This file contains hidden or 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
| ## Based on a gist by @DanielKotik | |
| # Install | |
| TAG=$(curl -s https://api.github.com/repos/getsops/sops/releases/latest | jq .tag_name | tr -d '"') | |
| VER=$(echo "$TAG" |tr -d 'v') | |
| sudo dnf -y install https://github.com/getsops/sops/releases/download/${TAG}/sops-${VER}-1.x86_64.rpm | |
| # Verify | |
| sops --version --check-for-updates |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment