Page MenuHomeSolus

D852.id2138.diff
No OneTemporary

D852.id2138.diff

diff --git a/files/0001-Support-a-stateless-configuration.patch b/files/0001-Support-a-stateless-configuration.patch
--- a/files/0001-Support-a-stateless-configuration.patch
+++ b/files/0001-Support-a-stateless-configuration.patch
@@ -1,23 +1,23 @@
-From 24b252d3761ce21131e4dbe91da9606bb0cb628c Mon Sep 17 00:00:00 2001
-From: Ikey Doherty <ikey@solus-project.com>
-Date: Sun, 27 Nov 2016 19:05:55 +0000
+From d9411937dcd19632b002fc74eb1b18619737827f Mon Sep 17 00:00:00 2001
+From: Pierre-Yves <pyu@riseup.net>
+Date: Sun, 20 Aug 2017 15:38:03 +0200
Subject: [PATCH] Support a stateless configuration
-Signed-off-by: Ikey Doherty <ikey@solus-project.com>
+Signed-off-by: Pierre-Yves <pyu@riseup.net>
---
Makefile.in | 9 +++++----
configure.ac | 1 +
src/firejail/Makefile.in | 3 ++-
- src/firejail/checkcfg.c | 10 ++++++----
+ src/firejail/checkcfg.c | 7 ++++++-
src/firejail/main.c | 11 +++++++++++
src/firejail/restricted_shell.c | 12 ++++++++++--
- 6 files changed, 35 insertions(+), 11 deletions(-)
+ 6 files changed, 35 insertions(+), 8 deletions(-)
diff --git a/Makefile.in b/Makefile.in
-index dbf53e2..d608c36 100644
+index 0b24552..4ea6e74 100644
--- a/Makefile.in
+++ b/Makefile.in
-@@ -8,6 +8,7 @@ exec_prefix=@exec_prefix@
+@@ -9,6 +9,7 @@ exec_prefix=@exec_prefix@
bindir=@bindir@
libdir=@libdir@
datarootdir=@datarootdir@
@@ -25,7 +25,7 @@
mandir=@mandir@
sysconfdir=@sysconfdir@
-@@ -82,12 +83,12 @@ realinstall:
+@@ -115,12 +116,12 @@ endif
install -c -m 0644 README $(DESTDIR)/$(DOCDIR)/.
install -c -m 0644 RELNOTES $(DESTDIR)/$(DOCDIR)/.
# etc files
@@ -40,13 +40,13 @@
- sh -c "if [ ! -f $(DESTDIR)/$(sysconfdir)/firejail/login.users ]; then install -c -m 0644 etc/login.users $(DESTDIR)/$(sysconfdir)/firejail/.; fi;"
+ sh -c "if [ ! -f $(DESTDIR)/$(datadir)/defaults/firejail/login.users ]; then install -c -m 0644 etc/login.users $(DESTDIR)/$(datadir)/defaults/firejail/.; fi;"
rm -fr .etc
- ifeq ($(HAVE_APPARMOR),-DHAVE_APPARMOR)
+ ifeq ($(HAVE_APPARMOR),-DHAVE_APPARMOR)
# install apparmor profile
diff --git a/configure.ac b/configure.ac
-index da4b315..f776f99 100644
+index c0f5dd3..751f423 100644
--- a/configure.ac
+++ b/configure.ac
-@@ -154,6 +154,7 @@ echo
+@@ -183,6 +183,7 @@ echo
echo "Configuration options:"
echo " prefix: $prefix"
echo " sysconfdir: $sysconfdir"
@@ -55,7 +55,7 @@
echo " <linux/seccomp.h>: $HAVE_SECCOMP_H"
echo " apparmor: $HAVE_APPARMOR"
diff --git a/src/firejail/Makefile.in b/src/firejail/Makefile.in
-index fce4609..819464b 100644
+index 2059713..48f1ddd 100644
--- a/src/firejail/Makefile.in
+++ b/src/firejail/Makefile.in
@@ -4,6 +4,7 @@ prefix=@prefix@
@@ -66,58 +66,48 @@
VERSION=@PACKAGE_VERSION@
NAME=@PACKAGE_NAME@
-@@ -27,7 +28,7 @@ H_FILE_LIST = $(sort $(wildcard *.[h]))
+@@ -29,7 +30,7 @@ H_FILE_LIST = $(sort $(wildcard *.[h]))
C_FILE_LIST = $(sort $(wildcard *.c))
OBJS = $(C_FILE_LIST:.c=.o)
BINOBJS = $(foreach file, $(OBJS), $file)
--CFLAGS += -ggdb $(HAVE_FATAL_WARNINGS) -O2 -DVERSION='"$(VERSION)"' -DPREFIX='"$(prefix)"' -DSYSCONFDIR='"$(sysconfdir)/firejail"' -DLIBDIR='"$(libdir)"' $(HAVE_X11) $(HAVE_PRIVATE_HOME) $(HAVE_APPARMOR) $(HAVE_OVERLAYFS) $(HAVE_SECCOMP) $(HAVE_GLOBALCFG) $(HAVE_SECCOMP_H) $(HAVE_CHROOT) $(HAVE_NETWORK) $(HAVE_USERNS) $(HAVE_BIND) $(HAVE_FILE_TRANSFER) $(HAVE_WHITELIST) -fstack-protector-all -D_FORTIFY_SOURCE=2 -fPIE -pie -Wformat -Wformat-security
-+CFLAGS += -ggdb $(HAVE_FATAL_WARNINGS) -O2 -DVERSION='"$(VERSION)"' -DPREFIX='"$(prefix)"' -DSYSCONFDIR='"$(sysconfdir)/firejail"' -DDATADIR='"$(datadir)"' -DLIBDIR='"$(libdir)"' $(HAVE_X11) $(HAVE_PRIVATE_HOME) $(HAVE_APPARMOR) $(HAVE_OVERLAYFS) $(HAVE_SECCOMP) $(HAVE_GLOBALCFG) $(HAVE_SECCOMP_H) $(HAVE_CHROOT) $(HAVE_NETWORK) $(HAVE_USERNS) $(HAVE_BIND) $(HAVE_FILE_TRANSFER) $(HAVE_WHITELIST) -fstack-protector-all -D_FORTIFY_SOURCE=2 -fPIE -pie -Wformat -Wformat-security
+-CFLAGS += -ggdb $(HAVE_FATAL_WARNINGS) -O2 -DVERSION='"$(VERSION)"' $(HAVE_GCOV) $(HAVE_GIT_INSTALL) -DPREFIX='"$(prefix)"' -DSYSCONFDIR='"$(sysconfdir)/firejail"' -DLIBDIR='"$(libdir)"' $(HAVE_X11) $(HAVE_PRIVATE_HOME) $(HAVE_APPARMOR) $(HAVE_OVERLAYFS) $(HAVE_SECCOMP) $(HAVE_GLOBALCFG) $(HAVE_SECCOMP_H) $(HAVE_CHROOT) $(HAVE_NETWORK) $(HAVE_USERNS) $(HAVE_BIND) $(HAVE_FILE_TRANSFER) $(HAVE_WHITELIST) -fstack-protector-all -D_FORTIFY_SOURCE=2 -fPIE -pie -Wformat -Wformat-security
++CFLAGS += -ggdb $(HAVE_FATAL_WARNINGS) -O2 -DVERSION='"$(VERSION)"' $(HAVE_GCOV) $(HAVE_GIT_INSTALL) -DPREFIX='"$(prefix)"' -DSYSCONFDIR='"$(sysconfdir)/firejail"' -DDATADIR='"$(datadir)"' -DLIBDIR='"$(libdir)"' $(HAVE_X11) $(HAVE_PRIVATE_HOME) $(HAVE_APPARMOR) $(HAVE_OVERLAYFS) $(HAVE_SECCOMP) $(HAVE_GLOBALCFG) $(HAVE_SECCOMP_H) $(HAVE_CHROOT) $(HAVE_NETWORK) $(HAVE_USERNS) $(HAVE_BIND) $(HAVE_FILE_TRANSFER) $(HAVE_WHITELIST) -fstack-protector-all -D_FORTIFY_SOURCE=2 -fPIE -pie -Wformat -Wformat-security
LDFLAGS += -pie -Wl,-z,relro -Wl,-z,now -lpthread
- %.o : %.c $(H_FILE_LIST) ../include/common.h ../include/euid_common.h ../include/libnetlink.h ../include/pid.h
+ %.o : %.c $(H_FILE_LIST) ../include/common.h ../include/euid_common.h ../include/pid.h ../include/seccomp.h ../include/syscall.h
diff --git a/src/firejail/checkcfg.c b/src/firejail/checkcfg.c
-index 78c0e5c..d82e01c 100644
+index f4e28f0..85e1a5b 100644
--- a/src/firejail/checkcfg.c
+++ b/src/firejail/checkcfg.c
-@@ -43,9 +43,12 @@ int checkcfg(int val) {
- cfg_val[CFG_PRIVATE_BIN_NO_LOCAL] = 0; // disabled by default
-
+@@ -51,7 +51,12 @@ int checkcfg(int val) {
+ cfg_val[CFG_DISABLE_MNT] = 0;
+
// open configuration file
-- char *fname;
-- if (asprintf(&fname, "%s/firejail.config", SYSCONFDIR) == -1)
-- errExit("asprintf");
+- const char *fname = SYSCONFDIR "/firejail.config";
+ const char *fname;
+ if (access(SYSCONFDIR "/firejail.config", F_OK) == 0) {
+ fname = SYSCONFDIR "/firejail.config";
+ } else {
+ fname = DATADIR "/defaults/firejail/firejail.config";
+ }
-
- FILE *fp = fopen(fname, "r");
+ fp = fopen(fname, "r");
if (!fp) {
-@@ -274,7 +277,6 @@ int checkcfg(int val) {
- }
-
- fclose(fp);
-- free(fname);
- initialized = 1;
- }
-
+ #ifdef HAVE_GLOBALCFG
diff --git a/src/firejail/main.c b/src/firejail/main.c
-index b5a97c7..6529f97 100644
+index cff61f6..fc44ad2 100644
--- a/src/firejail/main.c
+++ b/src/firejail/main.c
-@@ -45,6 +45,9 @@ printf("time %s:%d %u\n", __FILE__, __LINE__, (uint32_t) systick);
- }
- #endif
+@@ -40,6 +40,9 @@
+ uid_t firejail_uid = 0;
+ gid_t firejail_gid = 0;
+// Stateless configuration directory
+#define DEFAULTSDIR DATADIR "/defaults/firejail"
+
- uid_t firejail_uid = 0;
- gid_t firejail_gid = 0;
-
-@@ -2361,6 +2364,10 @@ int main(int argc, char **argv) {
+ #define STACK_SIZE (1024 * 1024)
+ static char child_stack[STACK_SIZE]; // space for child's stack
+ Config cfg; // configuration
+@@ -2265,6 +2268,10 @@ int main(int argc, char **argv) {
rv = profile_find(cfg.command_name, SYSCONFDIR);
custom_profile = rv;
}
@@ -128,7 +118,7 @@
}
// use default.profile as the default
-@@ -2395,6 +2402,10 @@ int main(int argc, char **argv) {
+@@ -2297,6 +2304,10 @@ int main(int argc, char **argv) {
else
custom_profile = profile_find(profile_name, SYSCONFDIR);
}
@@ -140,7 +130,7 @@
fprintf(stderr, "Error: no default.profile installed\n");
exit(1);
diff --git a/src/firejail/restricted_shell.c b/src/firejail/restricted_shell.c
-index 979bb1e..2817f93 100644
+index d09a2c7..4162d14 100644
--- a/src/firejail/restricted_shell.c
+++ b/src/firejail/restricted_shell.c
@@ -34,8 +34,16 @@ int restricted_shell(const char *user) {
@@ -163,5 +153,5 @@
int lineno = 0;
char buf[MAX_READ];
--
-2.10.2
+2.14.1
diff --git a/files/create-usr-local-for-firecfg-if-not-exist.patch b/files/create-usr-local-for-firecfg-if-not-exist.patch
new file mode 100644
--- /dev/null
+++ b/files/create-usr-local-for-firecfg-if-not-exist.patch
@@ -0,0 +1,38 @@
+From ecf0794d2eae0201e9888e7b9228f8fef3e94fc6 Mon Sep 17 00:00:00 2001
+From: netblue30 <netblue30@yahoo.com>
+Date: Sat, 19 Aug 2017 08:02:22 -0400
+Subject: [PATCH] create /usr/local for firecfg if the directory doesn't exist
+
+---
+diff --git a/src/firecfg/main.c b/src/firecfg/main.c
+index 8e5b5e6fa..1ecfbf524 100644
+--- a/src/firecfg/main.c
++++ b/src/firecfg/main.c
+@@ -579,6 +579,26 @@ int main(int argc, char **argv) {
+ fprintf(stderr, "The proper way to run this command is \"sudo firecfg\".\n");
+ return 1;
+ }
++ else {
++ // create /usr/local directory if it doesn't exist (Solus distro)
++ struct stat s;
++ if (stat("/usr/local", &s) != 0) {
++ printf("Creating /usr/local directory\n");
++ int rv = mkdir("/usr/local", 0755);
++ if (rv != 0) {
++ fprintf(stderr, "Error: cannot create /usr/local directory\n");
++ return 1;
++ }
++ }
++ if (stat("/usr/local/bin", &s) != 0) {
++ printf("Creating /usr/local directory\n");
++ int rv = mkdir("/usr/local/bin", 0755);
++ if (rv != 0) {
++ fprintf(stderr, "Error: cannot create /usr/local/bin directory\n");
++ return 1;
++ }
++ }
++ }
+ set_links();
+
+
+
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,13 +1,13 @@
name : firejail
-version : 0.9.44.10
-release : 4
+version : 0.9.50
+release : 5
source :
- - https://github.com/netblue30/firejail/archive/0.9.44.10.tar.gz : eccb6f8ace71142253a1ed0e6902bbb3dd560d34bb4785ff1e7d01f0263ade34
+ - https://github.com/netblue30/firejail/archive/0.9.50.tar.gz : 2a43f6eed74a09d62f6034961bb82da27993344e2937b6ad2fa14782d13ed0ee
license : GPL-2.0
component : security
summary : Firejail is a SUID sandbox program
description: |
- Firejail is a SUID sandbox program that reduces the risk of security breaches by restricting the running environment of untrusted applications
+ Firejail is a SUID sandbox program that reduces the risk of security breaches by restricting the running environment of untrusted applications. It allows a process and all its descendants to have their own private view of the globally shared kernel resources, such as the network stack, process table, mount table.
setup : |
%patch -p1 < $pkgfiles/0001-Support-a-stateless-configuration.patch
%reconfigure
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -3,212 +3,418 @@
<Name>firejail</Name>
<Packager>
<Name>Pierre-Yves</Name>
- <Email>pyu@skynet.be</Email>
+ <Email>pyu@riseup.net</Email>
</Packager>
<License>GPL-2.0</License>
<PartOf>security</PartOf>
<Summary xml:lang="en">Firejail is a SUID sandbox program</Summary>
- <Description xml:lang="en">Firejail is a SUID sandbox program that reduces the risk of security breaches by restricting the running environment of untrusted applications
+ <Description xml:lang="en">Firejail is a SUID sandbox program that reduces the risk of security breaches by restricting the running environment of untrusted applications. It allows a process and all its descendants to have their own private view of the globally shared kernel resources, such as the network stack, process table, mount table.
</Description>
<Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://solus-project.com/sources/README.Solus</Archive>
</Source>
<Package>
<Name>firejail</Name>
<Summary xml:lang="en">Firejail is a SUID sandbox program</Summary>
- <Description xml:lang="en">Firejail is a SUID sandbox program that reduces the risk of security breaches by restricting the running environment of untrusted applications
+ <Description xml:lang="en">Firejail is a SUID sandbox program that reduces the risk of security breaches by restricting the running environment of untrusted applications. It allows a process and all its descendants to have their own private view of the globally shared kernel resources, such as the network stack, process table, mount table.
</Description>
<PartOf>security</PartOf>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib64/firejail/faudit</Path>
+ <Path fileType="library">/usr/lib64/firejail/fcopy</Path>
<Path fileType="library">/usr/lib64/firejail/firecfg.config</Path>
+ <Path fileType="library">/usr/lib64/firejail/fix_private-bin.py</Path>
+ <Path fileType="library">/usr/lib64/firejail/fj-mkdeb.py</Path>
+ <Path fileType="library">/usr/lib64/firejail/fjclip.py</Path>
+ <Path fileType="library">/usr/lib64/firejail/fjdisplay.py</Path>
+ <Path fileType="library">/usr/lib64/firejail/fjresize.py</Path>
+ <Path fileType="library">/usr/lib64/firejail/fldd</Path>
+ <Path fileType="library">/usr/lib64/firejail/fnet</Path>
+ <Path fileType="library">/usr/lib64/firejail/fseccomp</Path>
<Path fileType="library">/usr/lib64/firejail/fshaper.sh</Path>
<Path fileType="library">/usr/lib64/firejail/ftee</Path>
- <Path fileType="library">/usr/lib64/firejail/libconnect.so</Path>
+ <Path fileType="library">/usr/lib64/firejail/libpostexecseccomp.so</Path>
<Path fileType="library">/usr/lib64/firejail/libtrace.so</Path>
<Path fileType="library">/usr/lib64/firejail/libtracelog.so</Path>
+ <Path fileType="library">/usr/lib64/firejail/seccomp</Path>
+ <Path fileType="library">/usr/lib64/firejail/seccomp.32</Path>
+ <Path fileType="library">/usr/lib64/firejail/seccomp.64</Path>
+ <Path fileType="library">/usr/lib64/firejail/seccomp.block_secondary</Path>
+ <Path fileType="library">/usr/lib64/firejail/seccomp.debug</Path>
+ <Path fileType="library">/usr/lib64/firejail/seccomp.mdwx</Path>
<Path fileType="data">/usr/share/bash-completion/completions/firecfg</Path>
<Path fileType="data">/usr/share/bash-completion/completions/firejail</Path>
<Path fileType="data">/usr/share/bash-completion/completions/firemon</Path>
<Path fileType="data">/usr/share/defaults/firejail/0ad.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/2048-qt.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/7z.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/Cryptocat.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/Cyberfox.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/FossaMail.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/Gitter.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/Mathematica.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/Telegram.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/Thunar.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/VirtualBox.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/Wire.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/Xephyr.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/Xvfb.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/abrowser.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/akregator.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/amarok.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/android-studio.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/apktool.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/arduino.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/ark.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/arm.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/atom-beta.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/atom.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/atool.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/atril.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/audacious.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/audacity.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/aweather.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/baloo_file.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/baobab.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/bibletime.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/bitlbee.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/bleachbit.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/blender.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/bless.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/brasero.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/brave.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/caja.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/calibre.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/catfish.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/cherrytree.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/chromium-browser.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/chromium.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/claws-mail.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/clementine.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/clipit.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/cmus.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/conkeror.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/corebird.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/cpio.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/cryptocat.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/curl.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/cvlc.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/cyberfox.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/darktable.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/deadbeef.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/default.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/deluge.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/dex2jar.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/dia.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/digikam.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/dillo.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/dino.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/disable-common.inc</Path>
<Path fileType="data">/usr/share/defaults/firejail/disable-devel.inc</Path>
<Path fileType="data">/usr/share/defaults/firejail/disable-passwdmgr.inc</Path>
<Path fileType="data">/usr/share/defaults/firejail/disable-programs.inc</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/display.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/dnscrypt-proxy.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/dnsmasq.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/dolphin.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/dosbox.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/dragon.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/dropbox.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/ebook-viewer.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/electron.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/elinks.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/emacs.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/empathy.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/enchant.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/engrampa.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/eog.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/eom.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/epiphany.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/etr.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/evince.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/evolution.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/exiftool.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/fbreader.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/feh.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/file-roller.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/file.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/filezilla.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/firefox-esr.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/firefox-nightly.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/firefox.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/firejail.config</Path>
<Path fileType="data">/usr/share/defaults/firejail/flashpeak-slimjet.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/flowblade.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/fontforge.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/fossamail.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/franz.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/frozen-bubble.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gajim.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/galculator.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/geany.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/geary.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gedit.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/geeqie.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/ghb.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gimp-2.8.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gimp.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/git.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gitg.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gitter.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gjs.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/globaltime.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-2048.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-books.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-calculator.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gnome-chess.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-clocks.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-contacts.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-documents.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-font-viewer.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-maps.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gnome-mplayer.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-music.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-photos.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-twitch.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gnome-weather.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/goobox.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/google-chrome-beta.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/google-chrome-stable.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/google-chrome-unstable.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/google-chrome.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/google-play-music-desktop-player.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gpa.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gpg-agent.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gpg.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gpicview.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gpredict.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gtar.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gthumb.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/guayadeque.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/gucharmap.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gwenview.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/gzip.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/handbrake-gtk.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/handbrake.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/hashcat.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/hedgewars.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/hexchat.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/highlight.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/hugin.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/icecat.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/icedove.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/iceweasel.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/idea.sh.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/img2txt.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/inkscape.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/inox.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/iridium-browser.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/iridium.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/itch.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/jd-gui.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/jitsi.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/k3b.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/kate.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/kcalc.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/keepass.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/keepass2.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/keepassx.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/keepassx2.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/keepassxc.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/kino.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/kmail.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/knotes.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/kodi.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/konversation.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/ktorrent.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/kwrite.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/leafpad.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/less.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/libreoffice.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/liferea.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/localc.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/lodraw.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/loffice.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/lofromtemplate.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/login.users</Path>
<Path fileType="data">/usr/share/defaults/firejail/loimpress.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/lollypop.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/lomath.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/loweb.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/lowriter.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/luminance-hdr.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/lximage-qt.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/lxmusic.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/lxterminal.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/lynx.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mate-calc.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mate-calculator.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mate-color-select.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mate-dictionary.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/mathematica.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/mcabber.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mediainfo.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mediathekview.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/meld.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/midori.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/minetest.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mousepad.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mplayer.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/mpv.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/multimc5.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/mumble.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/mupdf.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/mupen64plus.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/musescore.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/mutt.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/nautilus.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/nemo.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/netsurf.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/neverball.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/nolocal.net</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/nylas.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/obs.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/odt2txt.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/okular.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/open-invaders.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/openbox.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/openshot.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/opera-beta.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/opera.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/orage.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/palemoon.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/parole.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/pcmanfm.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/pdfsam.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/pdftotext.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/peek.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/picard.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/pidgin.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/pingus.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/pithos.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/pix.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/pluma.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/polari.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/psi-plus.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/qbittorrent.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/qemu-launcher.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/qemu-system-x86_64.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/qlipper.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/qpdfview.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/qtox.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/quassel.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/quiterss.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/qupzilla.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/qutebrowser.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/rambox.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/ranger.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/remmina.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/rhythmbox.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/riot-web.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/ristretto.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/rtorrent.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/scribus.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/sdat2img.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/seamonkey-bin.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/seamonkey.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/server.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/silentarmy.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/simple-scan.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/simutrans.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/skanlite.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/skype.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/skypeforlinux.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/slack.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/smplayer.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/snap.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/soffice.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/soundconverter.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/spotify.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/sqlitebrowser.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/ssh-agent.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/ssh.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/start-tor-browser.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/steam.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/stellarium.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/strings.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/supertux2.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/synfigstudio.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/tar.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/telegram-desktop.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/telegram.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/thunar.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/thunderbird.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/torbrowser-launcher.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/totem.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/tracker.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/transmission-cli.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/transmission-gtk.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/transmission-qt.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/transmission-show.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/truecraft.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/tuxguitar.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/uget-gtk.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/unbound.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/unknown-horizons.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/unrar.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/unzip.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/uudeview.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/uzbl-browser.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/viewnior.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/viking.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/vim.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/virtualbox.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/vivaldi-beta.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/vivaldi-stable.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/vivaldi.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/vlc.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/vym.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/w3m.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/warzone2100.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/waterfox.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/webserver.net</Path>
<Path fileType="data">/usr/share/defaults/firejail/weechat-curses.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/weechat.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/wesnoth.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/wget.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/whitelist-common.inc</Path>
<Path fileType="data">/usr/share/defaults/firejail/wine.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/wire.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/wireshark-gtk.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/wireshark-qt.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/wireshark.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/xchat.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xed.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xfburn.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xfce4-dict.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xfce4-notes.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xiphos.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xmms.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xonotic-glx.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xonotic-sdl.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xonotic.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/xpdf.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/xplayer.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/xpra.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/xreader.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/xviewer.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/xz.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/xzdec.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/yandex-browser.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/youtube-dl.profile</Path>
<Path fileType="data">/usr/share/defaults/firejail/zathura.profile</Path>
+ <Path fileType="data">/usr/share/defaults/firejail/zoom.profile</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
- <Update release="4">
- <Date>2017-03-18</Date>
- <Version>0.9.44.10</Version>
+ <Update release="5">
+ <Date>2017-09-09</Date>
+ <Version>0.9.50</Version>
<Comment>Packaging update</Comment>
<Name>Pierre-Yves</Name>
- <Email>pyu@skynet.be</Email>
+ <Email>pyu@riseup.net</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Wed, Jul 26, 11:29 PM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5809410
Default Alt Text
D852.id2138.diff (45 KB)

Event Timeline