fix(orchestrator): harden provision.sh with chattr fallback and APT time fix#2227
fix(orchestrator): harden provision.sh with chattr fallback and APT time fix#2227tomassrnka wants to merge 1 commit intomainfrom
Conversation
…ate bypass Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
bugbot run |
PR SummaryMedium Risk Overview Written by Cursor Bugbot for commit 720ceee. This will update automatically on new commits. Configure here. |
| elif command -v chattr >/dev/null 2>&1 && chattr +i /etc/resolv.conf 2>/dev/null; then | ||
| CHATTR_AVAILABLE=1 |
There was a problem hiding this comment.
Is this fallback really necessary? What I mean is that busybox should be always available, right? Therefore if $BUSYBOX chattr +i fail the chattr +i will fail as well. Or am I missing something?
Cherrypicked fix from #1875 as separate PR