grafclouds.com / documents / insights / training / devops-challenges / linux-hotfix-outside-config-mgmt

The Fix Is One Line in /etc. Just SSH In and Edit It?

Intermediate ~11 min read
Linux

Scenario

Production is degraded on a three-node fleet because a kernel tunable in /etc/sysctl.d/ is set to the wrong value. The fix is genuinely trivial: change one line, reload, done. The catch is that this fleet is managed by Ansible — the playbooks are the source of truth, they run on a schedule and on demand, nodes get replaced during deploys, and autoscaling can add fresh instances at any time. A teammate wants to SSH into the three boxes, edit the file by hand, and "codify it in Ansible later, once the fire's out."

The Quick Fix on the Table

Hand-edit the file on all three nodes over SSH right now. It takes five minutes, requires no pull request, and production recovers immediately. The Ansible change gets promised for "later."

Interview · Round 1

The quick fix is on the table and the room is waiting for your call. Would you sign off on it? Take a position and justify it — out loud or on paper — before revealing the analysis.