mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-22 22:01:18 -06:00
some cleanup
This commit is contained in:
parent
5c95f0f957
commit
9b56dc8e94
3 changed files with 28 additions and 17 deletions
10
RELNOTES
10
RELNOTES
|
|
@ -1,13 +1,17 @@
|
|||
firejail (0.9.65) baseline; urgency=low
|
||||
* filtering environment variables
|
||||
* zsh completion
|
||||
* --mkdir, --mkfile
|
||||
* protocol now accumulates
|
||||
* command line: --mkdir, --mkfile
|
||||
* --protocol now accumulates
|
||||
* Jolla/SailfishOS patches
|
||||
* private-lib rework
|
||||
* jailtest
|
||||
* jailtest utility for testing running sandboxes
|
||||
* removed --audit options, relpaced by jailtest
|
||||
* capabilities list update
|
||||
* faccessat2 syscall support
|
||||
* compile time: --enable-force-nonewprivs
|
||||
* compile time: --disable-output
|
||||
* compile time: --enable-lts
|
||||
* new profiles: vmware-view, display-im6.q16, ipcalc, ipcalc-ng
|
||||
* ebook-convert, ebook-edit, ebook-meta, ebook-polish, lzop,
|
||||
* avidemux, calligragemini, vmware-player, vmware-workstation
|
||||
|
|
|
|||
|
|
@ -269,6 +269,14 @@ errout:
|
|||
|
||||
void print_compiletime_support(void) {
|
||||
printf("Compile time support:\n");
|
||||
printf("\t- Always force nonewprivs support is %s\n",
|
||||
#ifdef HAVE_FORCE_NONEWPRIVS
|
||||
"enabled"
|
||||
#else
|
||||
"disabled"
|
||||
#endif
|
||||
);
|
||||
|
||||
printf("\t- AppArmor support is %s\n",
|
||||
#ifdef HAVE_APPARMOR
|
||||
"enabled"
|
||||
|
|
@ -333,6 +341,13 @@ void print_compiletime_support(void) {
|
|||
#endif
|
||||
);
|
||||
|
||||
printf("\t- output logging is %s\n",
|
||||
#ifdef HAVE_OUTPUT
|
||||
"enabled"
|
||||
#else
|
||||
"disabled"
|
||||
#endif
|
||||
);
|
||||
printf("\t- overlayfs support is %s\n",
|
||||
#ifdef HAVE_OVERLAYFS
|
||||
"enabled"
|
||||
|
|
@ -381,19 +396,5 @@ void print_compiletime_support(void) {
|
|||
#endif
|
||||
);
|
||||
|
||||
printf("\t- output logging is %s\n",
|
||||
#ifdef HAVE_OUTPUT
|
||||
"enabled"
|
||||
#else
|
||||
"disabled"
|
||||
#endif
|
||||
);
|
||||
|
||||
printf("\t- Always force nonewprivs support is %s\n",
|
||||
#ifdef HAVE_FORCE_NONEWPRIVS
|
||||
"enabled"
|
||||
#else
|
||||
"disabled"
|
||||
#endif
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ static char *usage_str =
|
|||
#endif
|
||||
" --cpu=cpu-number,cpu-number - set cpu affinity.\n"
|
||||
" --cpu.print=name|pid - print the cpus in use.\n"
|
||||
#ifdef HAVE_DBUSPROXy
|
||||
" --dbus-log=file - set DBus log file location.\n"
|
||||
" --dbus-system=filter|none - set system DBus access policy.\n"
|
||||
" --dbus-system.broadcast=rule - allow signals on the system DBus according to rule.\n"
|
||||
|
|
@ -70,6 +71,7 @@ static char *usage_str =
|
|||
" --dbus-user.own=name - allow ownership of name on the session DBus.\n"
|
||||
" --dbus-user.see=name - allow seeing name on the session DBus.\n"
|
||||
" --dbus-user.talk=name - allow talking to name on the session DBus.\n"
|
||||
#endif
|
||||
" --debug - print sandbox debug messages.\n"
|
||||
" --debug-blacklists - debug blacklisting.\n"
|
||||
" --debug-caps - print all recognized capabilities.\n"
|
||||
|
|
@ -162,14 +164,18 @@ static char *usage_str =
|
|||
" --novideo - disable video devices.\n"
|
||||
" --nou2f - disable U2F devices.\n"
|
||||
" --nowhitelist=filename - disable whitelist for file or directory.\n"
|
||||
#ifdef HAVE_OUTPUT
|
||||
" --output=logfile - stdout logging and log rotation.\n"
|
||||
" --output-stderr=logfile - stdout and stderr logging and log rotation.\n"
|
||||
#endif
|
||||
#ifdef HAVE_OVERLAYFS
|
||||
" --overlay - mount a filesystem overlay on top of the current filesystem.\n"
|
||||
" --overlay-named=name - mount a filesystem overlay on top of the current\n"
|
||||
"\tfilesystem, and store it in name directory.\n"
|
||||
" --overlay-tmpfs - mount a temporary filesystem overlay on top of the\n"
|
||||
"\tcurrent filesystem.\n"
|
||||
" --overlay-clean - clean all overlays stored in $HOME/.firejail directory.\n"
|
||||
#endif
|
||||
" --private - temporary home directory.\n"
|
||||
" --private=directory - use directory as user home.\n"
|
||||
" --private-cache - temporary ~/.cache directory.\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue