libstore/build: always treat seccomp setup failures as fatal

In f047e4357b, I missed the behavior that if
building without a dedicated build user (i.e. in single-user setups), seccomp
setup failures are silently ignored. This was introduced without explanation 7
years ago (ff6becafa8). Hopefully the only
use-case nowadays is causing spurious test suite successes when messing up the
seccomp filter during development. Let's try removing it.

Change-Id: Ibe51416d9c7a6dd635c2282990224861adf1ceab
This commit is contained in:
alois31 2024-05-27 17:05:44 +02:00
parent 6e59b4b407
commit 5b6072ac9c
No known key found for this signature in database
GPG key ID: E0F59EA5E5216914

View file

@ -1714,11 +1714,7 @@ void LocalDerivationGoal::runChild()
commonChildInit();
try {
setupSeccomp();
} catch (...) {
if (buildUser) throw;
}
setupSeccomp();
bool setUser = true;