mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-21 06:45:29 -06:00
* pip: fix including local override
* pip: allow access to cache
The shared build-systems-common.profile (to which pip.profile redirects) blacklists ${HOME}/.cache/pip. Override that here.
* pip: add cache support in commented whitelist
21 lines
516 B
Text
21 lines
516 B
Text
# Firejail profile for pip
|
|
# Description: package manager for Python packages
|
|
# This file is overwritten after every install/update
|
|
quiet
|
|
# Persistent local customizations
|
|
include pip.local
|
|
# Persistent global definitions
|
|
include globals.local
|
|
|
|
ignore read-only ${HOME}/.local/lib
|
|
|
|
# Allow python3 (blacklisted by disable-interpreters.inc)
|
|
include allow-python3.inc
|
|
|
|
noblacklist ${HOME}/.cache/pip
|
|
|
|
#whitelist ${HOME}/.cache/pip
|
|
#whitelist ${HOME}/.local/lib/python*
|
|
|
|
# Redirect
|
|
include build-systems-common.profile
|