Merge pull request #50235 from illegalprime/more-fhsuserenv-blacklists

fix FHSUserEnv blacklists
This commit is contained in:
Matthew Bauer 2018-11-28 09:32:01 -06:00 committed by GitHub
commit 7fa8c41c4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@
#include <sys/types.h>
#include <sys/wait.h>
const gchar *bind_blacklist[] = {"bin", "etc", "host", "usr", NULL};
const gchar *bind_blacklist[] = {"bin", "etc", "host", "usr", "lib", "lib64", "lib32", "sbin", NULL};
void bind_mount(const gchar *source, const gchar *target) {
fail_if(g_mkdir(target, 0755));