aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* Add new condition ?HAS_PRIVATE:Libravatar rusty-snake2021-03-03
| | | | | Idea from @vinc17fr https://github.com/netblue30/firejail/issues/4026#issuecomment-789178572
* Merge pull request #4035 from Tomin1/few_fixesLibravatar Reiner Herrmann2021-03-03
|\ | | | | Improve error messages
| * Use strerror(errno) instead of %mLibravatar Tomi Leppänen2021-03-03
| | | | | | | | | | | | | | | | Better for portability and consistency. Currently strerror() is used everywhere else, so use it here as well. printf's %m is a glibc extension that is supported also by some other libc implementations. Signed-off-by: Tomi Leppänen <tomi.leppanen@jolla.com>
| * Improve error reporting while mountingLibravatar Tomi Leppänen2021-03-03
|/ | | | | | Move error message after debug logging and add cause message. Signed-off-by: Tomi Leppänen <tomi.leppanen@jolla.com>
* Merge pull request #4016 from pirate486743186/patch-5Libravatar Reiner Herrmann2021-03-02
|\ | | | | Create rtv-addons.inc
| * include rtv-addons.localLibravatar pirate4867431862021-03-02
| |
| * rm empty lineLibravatar pirate4867431862021-03-02
| |
| * Update rtv.profileLibravatar pirate4867431862021-03-02
| |
| * Rename etc/inc/rtv-addons.inc to etc/profile-m-z/rtv-addons.profileLibravatar pirate4867431862021-03-02
| |
| * rm excessive blacklistLibravatar pirate4867431862021-03-01
| |
| * rm trailing /Libravatar pirate4867431862021-03-01
| |
| * add .cache/youtube-dlLibravatar pirate4867431862021-03-01
| |
| * added commented out rtv-addons.incLibravatar pirate4867431862021-03-01
| |
| * Delete rtv-addons.incLibravatar pirate4867431862021-03-01
| | | | | | moved to firejail/etc/inc
| * Create rtv-addons.incLibravatar pirate4867431862021-03-01
| | | | | | move include to proper place
| * Update rtv-addons.incLibravatar pirate4867431862021-03-01
| | | | | | "ignore dbus-system none" not needed
| * Create rtv-addons.incLibravatar pirate4867431862021-02-27
| | | | | | To optionally allow rtv to launch links in external programs.
* | Merge pull request #4031 from glitsj16/firefox-common-addonsLibravatar glitsj162021-03-02
|\ \ | | | | | | Rename firefox-common-addons.inc
| * | rename firefox-common-addons.incLibravatar glitsj162021-03-02
| | |
| * | Rename etc/inc/firefox-common-addons.inc to ↵Libravatar glitsj162021-03-02
| | | | | | | | | | | | etc/profile-a-l/firefox-common-addons.profile
* | | Merge pull request #4030 from glitsj16/chromium-common-hardenedLibravatar glitsj162021-03-02
|\ \ \ | | | | | | | | Rename chromium-common-hardened.inc
| * | | rename chromium-common-hardened.incLibravatar glitsj162021-03-02
| | | |
| * | | rename chromium-common-hardened.incLibravatar glitsj162021-03-02
| | | |
| * | | Rename etc/inc/chromium-common-hardened.inc to ↵Libravatar glitsj162021-03-02
| |/ / | | | | | | | | | etc/profile-a-l/chromium-common-hardened.profile
* | | Merge pull request #4029 from glitsj16/feh-networkLibravatar glitsj162021-03-02
|\ \ \ | | | | | | | | Rename feh-network.inc
| * | | rename feh-network.incLibravatar glitsj162021-03-02
| | | |
| * | | add local override functionality to feh-network.profileLibravatar glitsj162021-03-02
| | | |
| * | | Rename etc/inc/feh-network.inc to etc/profile-a-l/feh-network.profileLibravatar glitsj162021-03-02
| |/ /
* | | Merge pull request #4028 from glitsj16/archiver-commonLibravatar glitsj162021-03-02
|\ \ \ | | | | | | | | Rename archiver-common.inc
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | rename archiver-common.incLibravatar glitsj162021-03-02
| | | |
| * | | Rename etc/inc/archiver-common.inc to etc/profile-a-l/archiver-common.profileLibravatar glitsj162021-03-02
| |/ /
* / / Fix typosLibravatar glitsj162021-03-02
|/ /
* | Merge pull request #4024 from kmk3/improve-makefilesLibravatar Reiner Herrmann2021-03-01
|\ \ | | | | | | Makefile improvements
| * | makefiles: make all, clean and distclean PHONYLibravatar Kelvin M. Klann2021-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoid a stat() call for each affected target and also potentially speed up parallel builds. From the GNU make manual[1]: > Phony targets are also useful in conjunction with recursive > invocations of make (see Recursive Use of make). In this situation > the makefile will often contain a variable which lists a number of > sub-directories to be built. [...] > The implicit rule search (see Implicit Rules) is skipped for .PHONY > targets. This is why declaring a target as .PHONY is good for > performance, even if you are not worried about the actual file > existing. Commands used to search, replace and cleanup: $ find -type f -name '*Makefile.in' -exec sed -i.bak \ -e 's/^all:/.PHONY: all\nall:/' \ -e 's/^clean:/.PHONY: clean\nclean:/' \ -e 's/^distclean:/.PHONY: distclean\ndistclean:/' '{}' + $ find -type f -name '*Makefile.in.bak' -exec rm '{}' + [1]: https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
| * | makefiles: fix misc blank line consistencyLibravatar Kelvin M. Klann2021-03-01
| | |
| * | makefiles: fix whitespaceLibravatar Kelvin M. Klann2021-03-01
| | | | | | | | | | | | | | | | | | | | | | | | With a fun little script: $ git ls-files -z -- '*Makefile*' | xargs -0 -I '{}' sh -c \ "test -s '{}' && printf '%s\n' \"\`git stripspace <'{}'\`\" >'{}'"
* | | tests: also remove arguments tests which also depend on fauditLibravatar Reiner Herrmann2021-03-01
| | |
* | | tests: drop (f)audit from testsLibravatar Reiner Herrmann2021-03-01
| | |
* | | manpage: Add log as value of seccomp-error-actionLibravatar rusty-snake2021-03-01
| | | | | | | | | | | | man firejail-profiles has it already. [skip ci]
* | | chromium-browser-privacy: add cat to private-binLibravatar rusty-snake2021-03-01
| | |