From 45304621a6c600d8e30e98bfbef05149caaf56c5 Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Thu, 12 Nov 2020 23:11:34 +0100 Subject: install libraries needed by fcopy when using private-lib Fixes #3741 --- src/firejail/fs_lib.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/firejail/fs_lib.c b/src/firejail/fs_lib.c index 64444bba2..5cfd33b42 100644 --- a/src/firejail/fs_lib.c +++ b/src/firejail/fs_lib.c @@ -378,6 +378,9 @@ void fs_private_lib(void) { // bring in firejail executable libraries in case we are redirected here by a firejail symlink from /usr/local/bin/firejail fslib_install_list("/usr/bin/firejail,firejail"); // todo: use the installed path for the executable + // install libraries needed by fcopy + fslib_install_list(PATH_FCOPY); + fmessage("Installed %d %s and %d %s\n", lib_cnt, (lib_cnt == 1)? "library": "libraries", dir_cnt, (dir_cnt == 1)? "directory": "directories"); -- cgit v1.2.3-70-g09d2 From b0b3fd4a0481929aa82166f408d59e3fdc19fe4c Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Thu, 12 Nov 2020 23:14:09 +0100 Subject: ci: test also transmission profile --- test/profiles/profiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/profiles/profiles.sh b/test/profiles/profiles.sh index 75d961eb1..2d7d2a966 100755 --- a/test/profiles/profiles.sh +++ b/test/profiles/profiles.sh @@ -40,7 +40,7 @@ if [ -d "/run/user/$UID" ]; then PROFILES=`ls /etc/firejail/*.profile` echo "TESTING: default profiles installed in /etc" else - PROFILES=`ls /etc/firejail/fi*.profile /etc/firejail/fl*.profile /etc/firejail/free*.profile` + PROFILES=`ls /etc/firejail/transmission*.profile /etc/firejail/fi*.profile /etc/firejail/fl*.profile /etc/firejail/free*.profile` echo "TESTING: small number of default profiles installed in /etc" fi -- cgit v1.2.3-70-g09d2