Skip to main content
RunBook Academy

← All checklists in Linux

Before deploymentpatching

Checklist: Pre-patching readiness

19 items ·16 critical ·3 warn ·0 info

Use this checklist before any fleet patching operation. Work the structured items above; every critical item must be confirmed before the first wave starts.

Capturing a usable baseline

A baseline is only useful if the post-patch check can compare against it. Record the numbers somewhere the next operator can read, not in your terminal scrollback.

Capture at minimum: health-endpoint status and latency, error rate over the last hour, running kernel, and the versions of the packages you are about to change. The kernel and package versions are what let the post-patch check prove the change landed.

Sign-off

  • Operator: _________________ Date: ___________
  • Reviewer: ________________ Date: ___________

Critical16 items

  1. curl -sS -o /dev/null -w "%{http_code} %{time_total}\n" https://host/health
  2. uname -r; dpkg -l | awk "/^ii/ && /linux-image|libc6|openssl|libssl/ {print \$2, \$3}"   # RHEL: rpm -q kernel glibc openssl

Warning3 items