π ~1 min read
Table of contents
Symptom & Impact
Security patch rollout pauses at merge stage, leaving host in partially updated state.
Environment & Reproduction
Occurs when local customizations in /etc overlap with upstream base changes.
freebsd-update fetch
freebsd-update install
ls -la /var/db/freebsd-update
Root Cause Analysis
etcupdate cannot automatically merge conflicting edits across key config files.
Quick Triage
List unresolved conflicts and classify by service criticality.
etcupdate status
find /etc -name '*.merged' -o -name '*.orig'
Step-by-Step Diagnosis
Review conflict hunks and compare against approved baseline configs.
etcupdate resolve
diff -u /etc/ssh/sshd_config /etc/ssh/sshd_config.merged || true

Solution – Primary Fix
Resolve merges explicitly, complete install step, and restart impacted daemons.
Still having issues? Our Managed IT Services team can diagnose and resolve this for you. Get in touch for a free consultation.
etcupdate resolve
freebsd-update install
service -e | xargs -n1 service status >/dev/null

Solution – Alternative Approaches
Use config management source-of-truth to regenerate /etc after base update.
ansible-playbook site.yml --limit || true
Verification & Acceptance Criteria
Update reports complete and all critical services start with expected settings.
freebsd-version -kru
freebsd-update IDS
service sshd status
Rollback Plan
Boot previous BE or restore /etc backup if merged configs introduce outages.
bectl activate
shutdown -r now
Prevention & Hardening
Minimize direct manual edits in /etc and keep changes declarative.
Related Errors & Cross-Refs
Commonly linked to stale local include files and legacy rc.conf customizations.
Related tutorial: View the step-by-step tutorial for freebsd-15.
View all freebsd-15 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
freebsd-update and etcupdate manuals with Handbook upgrade procedures.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.