aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vincent43 <31109921+Vincent43@users.noreply.github.com>2018-11-22 11:10:19 +0100
committerLibravatar GitHub <noreply@github.com>2018-11-22 11:10:19 +0100
commit61bcad4765247a3292cbd25d8abc8072ea52a70f (patch)
treedb23cee94068691048ea421613733a148f00643b
parentMerge pull request #2268 from glitsj16/easystroke (diff)
downloadfirejail-61bcad4765247a3292cbd25d8abc8072ea52a70f.tar.gz
firejail-61bcad4765247a3292cbd25d8abc8072ea52a70f.tar.zst
firejail-61bcad4765247a3292cbd25d8abc8072ea52a70f.zip
playonlinux.profile: allow python
It won't work without it.
-rw-r--r--etc/playonlinux.profile9
1 files changed, 7 insertions, 2 deletions
diff --git a/etc/playonlinux.profile b/etc/playonlinux.profile
index 707c75cec..c97c27435 100644
--- a/etc/playonlinux.profile
+++ b/etc/playonlinux.profile
@@ -15,7 +15,13 @@ noblacklist ${HOME}/.PlayOnLinux
15# nc is needed to run playonlinux 15# nc is needed to run playonlinux
16noblacklist ${PATH}/nc 16noblacklist ${PATH}/nc
17 17
18# Allow access to perl 18# Allow python (blacklisted by disable-interpreters.inc)
19noblacklist ${PATH}/python2*
20noblacklist ${PATH}/python3*
21noblacklist /usr/lib/python2*
22noblacklist /usr/lib/python3*
23
24# Allow perl (blacklisted by disable-interpreters.inc)
19noblacklist ${PATH}/cpan* 25noblacklist ${PATH}/cpan*
20noblacklist ${PATH}/core_perl 26noblacklist ${PATH}/core_perl
21noblacklist ${PATH}/perl 27noblacklist ${PATH}/perl
@@ -23,7 +29,6 @@ noblacklist /usr/lib/perl*
23noblacklist /usr/share/perl* 29noblacklist /usr/share/perl*
24 30
25include disable-common.inc 31include disable-common.inc
26# playonlinux uses perl
27include disable-devel.inc 32include disable-devel.inc
28include disable-interpreters.inc 33include disable-interpreters.inc
29include disable-programs.inc 34include disable-programs.inc