Posts tagged: bash

All posts with the tag "bash"

Vaulted Secrets Without Git Churn

Ansible Vault keeps secrets out of sight, but the ciphertext changes on every encrypt. That turns Git diffs into noise and makes it hard to tell if anything actually changed. Decrypting, editing, and re-encrypting often leaves uncertainty about whether any plaintext changed. This is amplified when secret repos are tightly coupled to dependent repositories. A typical cycle includes decrypting, adding a key, updating a value, applying changes, and returning later with little clarity about what changed while secrets were in plaintext.

Today a new workflow was created with @gpt-5.2-codex to keep diffs clean and avoid re-encrypting when the plaintext is identical.

Re-encrypting a file with the same content produces different ciphertext. A simple decrypt/encrypt cycle can look like a full file change, even when the plaintext is identical. That creates uncertainty and makes GitOps workflows feel brittle.

...

Today I learned how to use tar over ssh to save hours in file transfers. I keep all of my projects in ~/git (very cre...

I am a linux user through and through. Desktop, server, vms, containers, everything except my phone is linux. With th...

Today I discovered the function in bash from the ujust tool from ublue.it. Seems like a cool trick, but might not wor...

Authentication from cli tools can be a bit of a bear, and I have to look it up every time. This is my reference guide...

jpillora/installer is the install script generator I have been looking for. It downloads binaries for your machine fr...

There is GNU coreutils command called that is super handy in shell scripts to make temporary landing spots for files ...