aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2017-06-03 20:21:45 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2017-06-03 20:21:45 -0400
commitc60666097838b67a80bbff7724865e23cdbd00f4 (patch)
treea837ecf630547cb0bcdf2fe981b30ecf19e81b0a
parentAdded Catfish profile (diff)
downloadfirejail-c60666097838b67a80bbff7724865e23cdbd00f4.tar.gz
firejail-c60666097838b67a80bbff7724865e23cdbd00f4.tar.zst
firejail-c60666097838b67a80bbff7724865e23cdbd00f4.zip
profile support in overlayfs mode
-rw-r--r--RELNOTES3
-rw-r--r--src/firejail/main.c6
2 files changed, 5 insertions, 4 deletions
diff --git a/RELNOTES b/RELNOTES
index e67f2dbd7..0c59364c5 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -4,7 +4,8 @@ firejail (0.9.47) baseline; urgency=low
4 please use ~/Downloads directory for saving files 4 please use ~/Downloads directory for saving files
5 * modifs: AppArmor made optional; a warning is printed on the screen 5 * modifs: AppArmor made optional; a warning is printed on the screen
6 if the sandbox fails to load the AppArmor profile 6 if the sandbox fails to load the AppArmor profile
7 * added /etc/firejail/globals.local for global customizations 7 * feature: added /etc/firejail/globals.local for global customizations
8 * feature: profile support in overlayfs mode
8 * new profiles: vym, darktable, Waterfox, digiKam, Catfish 9 * new profiles: vym, darktable, Waterfox, digiKam, Catfish
9 * bugfixes 10 * bugfixes
10 -- netblue30 <netblue30@yahoo.com> Tue, 23 May 2017 08:00:00 -0500 11 -- netblue30 <netblue30@yahoo.com> Tue, 23 May 2017 08:00:00 -0500
diff --git a/src/firejail/main.c b/src/firejail/main.c
index 95c325f9f..cff61f64a 100644
--- a/src/firejail/main.c
+++ b/src/firejail/main.c
@@ -2272,9 +2272,9 @@ int main(int argc, char **argv) {
2272 if (cfg.chrootdir) { 2272 if (cfg.chrootdir) {
2273 fwarning("default profile disabled by --chroot option\n"); 2273 fwarning("default profile disabled by --chroot option\n");
2274 } 2274 }
2275 else if (arg_overlay) { 2275// else if (arg_overlay) {
2276 fwarning("default profile disabled by --overlay option\n"); 2276// fwarning("default profile disabled by --overlay option\n");
2277 } 2277// }
2278 else { 2278 else {
2279 // try to load a default profile 2279 // try to load a default profile
2280 char *profile_name = DEFAULT_USER_PROFILE; 2280 char *profile_name = DEFAULT_USER_PROFILE;